统一的量子计算网关
一个 API,
POST /v1/jobs
一个 API,
接入所有量子计算机。
通过 REST 提交 OpenQASM 3。Pauli 在每台设备上为您的电路估价,然后按价格、队列或保真度路由。
curl https://pauli.xyz/v1/jobs \
-H "Authorization: Bearer $PAULI_API_KEY" \
-d '{
"program": {"format": "openqasm3",
"source": "OPENQASM 3.0; include \"stdgates.inc\"; qubit[2] q; bit[2] c; h q[0]; cx q[0], q[1]; c = measure q;"},
"shots": 1000,
"routing": {"policy": "cheapest", "allow_simulator_fallback": true},
"billing": {"max_spend_usd": "5.00"}
}'
HTTP/2 202
{
"job_id": "7b1c2e90-4f3a-4c2e-9b1a-2f6f6f0e8d21",
"status": "queued",
"routing_decision": {
"selected_device": "ionq.qpu.forte-enterprise-1",
"score": 0.8121,
"reason": "cheapest policy; est. fidelity 0.953; cost $1.90; predicted queue 6871s; connectivity fit 1.00 (no SWAP overhead)"
},
"cost_estimate": {"amount": "1.900000", "unit": "ionq_aqt"}
}
机群实时数据将显示在这里。
量子云是一个没有价签的市场。
一项独立研究在主要量子云上执行了 5,000 多个作业(约 $600k),结果如下:
约 1,000 倍
同一工作负载的成本差距:一个 10 量子比特、500 shots 的 QFT,在 IQM Garnet 上花费 $1.03,在 Quantinuum H-Series 上花费 $2,289.86。
36%
的厂商队列预估超过了实际等待时间。
$15.30 vs $48.06
同一台物理 QPU(IonQ Aria-1),在不同售卖渠道有不同价格。
来源:“Three Months in the Life of Cloud Quantum Computing”, arXiv:2601.09943(2026 年 1 月)。
一分钱都还没花,就能比较整个机群。
实时的价格、队列与保真度,来自与路由器打分所用完全相同的转译结果。
1 至 100,000
| 设备 | 状态 | 估计价格 | 预计队列 | 估计保真度 |
|---|---|---|---|---|
| 正在加载实时估价… | ||||
您自己的电路也能获得同样的比较(需认证):POST /v1/jobs/estimate。