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
algo
(required): Specifies the algorithm and variant. Options:ml-kem-512
,ml-kem-768
,ml-kem-1024
,ml-dsa-44
,ml-dsa-65
,ml-dsa-87
,sphincs-128f
,sphincs-192f
,sphincs-256f
.
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.