Kyber Club API Documentation

Integrate quantum-safe cryptography into your systems

Overview

The Kyber Club API provides programmatic access to generate quantum-safe keys for ML-KEM (FIPS 203), ML-DSA (FIPS 204), and SPHINCS+ (FIPS 205). Use it to secure your applications with NIST-compliant post-quantum cryptography.

Endpoint

GET https://kyber.club/api

Parameters

Example Request

curl "https://kyber.club/api?algo=ml-kem-512"

Example Response

{
    "public_key": "3ec880cb...",
    "private_key": "6d76ceda..."
}

Rate Limits

Requests are limited to 1 per second per IP, with a burst of 2 additional requests (max 3 in a short window). Excess requests return 429 Too Many Requests.

Integration Tips

Use the API in your scripts or applications to generate keys programmatically. Example in Python:

import requests
response = requests.get("https://kyber.club/api?algo=ml-kem-512")
keys = response.json()
print("Public Key:", keys["public_key"])
print("Private Key:", keys["private_key"])

Handle 429 errors with exponential backoff for retries.