Control plane for complex compute
Run expensive workloads with clarity and control
ComputeHog routes your quantum, optimization, and simulation workloads to the right provider. You see costs before you run. You understand why decisions are made.
Simple API
One endpoint. Clear responses. Costs visible before execution.
POST /v1/run
curl -X POST https://api.computehog.com/v1/run \
-H "Authorization: Bearer ch_live_xxxxx" \
-H "Content-Type: application/json" \
-d '{
"circuit": "OPENQASM 2.0; ...",
"shots": 1000,
"backend": "auto"
}'Response
{
"job_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "completed",
"results": {
"counts": { "00": 502, "11": 498 }
},
"backend": "simulator_aer",
"cost_usd": 0.00,
"execution_time_ms": 31,
"reason": "Circuit has 2 qubits, 5 gates. Routed to simulator for speed."
}What ComputeHog provides
Multi-provider routing
Execute on IBM Quantum, IonQ, AWS Braket, or simulators. ComputeHog selects based on your constraints. You see why.
Cost estimation before execution
Every run shows estimated cost and time. No surprises. You approve before compute starts.
Audit trail and reproducibility
Every run is logged with inputs, outputs, decisions, and versions. Re-run any experiment.