Translate quantum circuits between frameworks. Run them on real hardware.
Base URL: https://quantum.gpupulse.dev/api/v1
curl -H "Authorization: Bearer qb_your_key_here" \
https://quantum.gpupulse.dev/api/v1/balance
# Transpile a Bell state
curl -X POST https://quantum.gpupulse.dev/api/v1/transpile \
-H "Authorization: Bearer qb_your_key" \
-H "Content-Type: application/json" \
-d '{"qasm": "OPENQASM 2.0;\ninclude \"qelib1.inc\";\nqreg q[2];\ncreg c[2];\nh q[0];\ncx q[0],q[1];\nmeasure q[0] -> c[0];\nmeasure q[1] -> c[1];"}'
# Submit to Wukong
curl -X POST https://quantum.gpupulse.dev/api/v1/submit \
-H "Authorization: Bearer qb_your_key" \
-H "Content-Type: application/json" \
-d '{"qasm": "...", "backend": "wukong", "shots": 1000}'
Pay with USDC on Solana. Contact us for payment details.
20+ gate mappings including H, X, Y, Z, S, T, RX, RY, RZ, CNOT, CZ, SWAP, Toffoli, DAGGER blocks, and more.
GET /api/v1/gates for the full list.
Powered by Quantum Bridge Labs