Quantum Bridge API v1

Translate quantum circuits between frameworks. Run them on real hardware.

Base URL: https://quantum.gpupulse.dev/api/v1

Authentication

curl -H "Authorization: Bearer qb_your_key_here" \
     https://quantum.gpupulse.dev/api/v1/balance

Endpoints

POST /transpile 1 credit
Translate OpenQASM 2.0 → OriginIR
POST /reverse 1 credit
Translate OriginIR → OpenQASM 2.0
POST /validate free
Validate OriginIR syntax
POST /consensus 2 credits
IBC quantum consensus for multi-agent systems
POST /submit 5-10 credits
Submit circuit to simulator or Wukong hardware
GET /submit/<task_id> free
Poll task status and results

Quick Start

# 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}'

Pricing

Free — 50 credits
Starter $5 — 500 credits
Pro $25 — 5,000 credits
Enterprise $100 — 50,000 credits

Pay with USDC on Solana. Contact us for payment details.

Supported Gates

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