▸ DOCUMENTATION
Build with Q-MUMMA.
REST · GraphQL · gRPC. SDK for Python, TypeScript, and Go. Full reference for quantum jobs, PQC scanning, marketplace algorithms, and webhooks.
🚀
Quickstart
Run your first quantum job in under 5 minutes.
🔐
Authentication
API keys, OAuth, scopes, and rate limits.
⚛
Quantum Jobs
Submit, poll, and parse quantum job results.
🛒
Marketplace
Run pre-built algorithms with one API call.
🛡
PQC APIs
Sign, verify, scan — NIST FIPS 203-206.
📡
Webhooks
Get async notifications when jobs complete.
📦
SDK Reference
Python, TypeScript, Go full reference.
⚡
Rate Limits
Quotas, backoff, and retry strategies.
▸ SDKs
Your Language. Our Quantum.
OFFICIAL
Python
pip install qmumma
OFFICIAL
TypeScript
npm install @qmumma/sdk
OFFICIAL
Go
go get github.com/aumtrix/qmumma-go
ALWAYS
REST
curl https://api.qmumma.com/v1/
🚀
5-Minute Quickstart
1. INSTALL
pip install qmumma
2. AUTHENTICATE
import qmumma
client = qmumma.Client("YOUR_KEY")
3. RUN A JOB
result = client.run(
algorithm="bell-chsh",
backend="ibm_marrakesh",
shots=1000
)
4. VERIFY RESULT
print(result.chsh_value) # 2.8195
print(result.verified) # True
print(result.signature) # ML-DSA-65
▸ API REFERENCE
REST Endpoints
Base URL: https://api.qmumma.com
Full OpenAPI 3.0 spec available at https://api.qmumma.com/openapi.json