ZioMark's HUB | API Documentation
DiscordAbout Me
  • 🔳Introduction
    • 🔐Authentication
  • 🔲GET Endpoints
    • ▫️Dec to Hex
    • ▫️Hex to Dec
    • ▫️Timetamp to Date
    • ▫️CFX
    • ▫️Date
    • ▫️Date & Time Formatter
    • ▫️Text over Image
    • ▫️Image over Image
    • ▫️Weather
    • ▫️Translate
    • ▫️Convert Currency
    • ▫️Geolocation
    • ▫️QR Code Generator
    • ▫️Image Format Converter
    • ▫️Key Generator
    • 🌐Bored
    • ▫️BMI Calculator
    • ▫️VAT Calculator
    • ▫️SEO Analyzer
    • ▫️Local Time
    • ▫️Discount Calculator
    • ▫️Discount Discover
  • 🔲POST Endpoints
    • ▫️HTML to PDF
    • ▫️Loan Calculator
    • ▫️Excel to CSV
Powered by GitBook
On this page
  • /keygen
  • Query Parameters
  • Responses
  • Serial Style
  • Other Styles
  1. GET Endpoints

Key Generator

/keygen

This endpoint generates random keys based on the specified style provided in the query parameters. Supported styles include 'codeigniter encryption keys', '256-bit wep keys', '160-bit wpa key', '504-bit wpa key', '64-bit wep keys', '128-bit wep keys', '152-bit wep keys', 'serial', 'serial2', and 'serial3'. If the style is not provided or invalid, it returns a 400 error with a corresponding message.

Query Parameters

Parameter
Type
Description

style

String

The format type for the generated key.

Responses

Content-Type: application/json

Body:

{
    "key": "ABCD-EFGH-IJKL-MNOP"
}

Serial Style

Formats the raw key to resemble a serial key based on the specified format type. Supports three format types:

  • 'serial': Formats to XXXX-XXXX-XXXX where X represents a character.

  • 'serial2': Formats to XXXXX-XXXXX-XXXXX.

  • 'serial3': Formats to XXXXX-XXX-XXXXX-XXX. If no format type matches, it returns the raw key without any formatting.

Other Styles

256-bit wep keys
160-bit wpa key
504-bit wpa key
64-bit wep keys
128-bit wep keys
152-bit wep keys

Note

  • This API is intended for generating random keys for various purposes such as software licenses, access tokens, etc.

PreviousImage Format ConverterNextBored

Last updated 1 year ago

🔲
▫️