▸ 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.

5-minute QuickstartAPI Reference →
🚀
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

MethodEndpointDescriptionAuthTier
POST/v1/jobsSubmit a quantum job to any backendAPI KeyAll
GET/v1/jobs/:idGet job status and resultAPI KeyAll
GET/v1/jobsList all jobs with paginationAPI KeyAll
POST/v1/algorithms/:id/runRun a marketplace algorithmAPI KeyAll
GET/v1/algorithmsList all 28 available algorithmsPublicAll
POST/v1/pqc/scanRun a PQC vulnerability scan on a domainAPI KeyAll
POST/v1/pqc/signSign arbitrary data with ML-DSA-65API KeyStarter+
POST/v1/entropyGet quantum random bytes (QRNG)API KeyAll
GET/v1/hardwareList available quantum hardwarePublicAll
GET/v1/uqbs/jobsBrowse the AQRIB Benchmark vaultPublicAll
POST/v1/webhooksRegister a webhook endpointAPI KeyStarter+
GET/v1/usageGet current period usage statsAPI KeyAll

Full OpenAPI 3.0 spec available at https://api.qmumma.com/openapi.json