Quantum circuit simulation (Qiskit Aer): statevector, density-matrix (noise), stabilizer,
Quantum circuit simulation (Qiskit Aer): statevector, density-matrix (noise), stabilizer, and MPS methods; shots, expectation values, and seeded determinism. Sync tier up to 24 qubits. Paid in USDC on Base or Solana.
10000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-01
updated
Provider
quantum-artificer.surewhynot.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xf786a555be87c6d3b316c976b643c70326565f3f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 1800
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "FNLB2o1u22JFCG5wTU9eQCA5WjwRBgW9LBEbsJagreKz",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 1800
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"operation": "simulate",
"spec": {
"gates": [
{
"name": "h",
"qubits": [
0
]
},
{
"name": "cx",
"qubits": [
0,
1
]
}
],
"method": "statevector",
"qubits": 2,
"shots": 1024
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"result": {
"counts": {
"11": 512,
"00": 512
}
},
"status": "succeeded",
"verification": {
"passed": true
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"operation": {
"description": "Operation within this domain.",
"enum": [
"simulate"
],
"type": "string"
},
"spec": {
"description": "Operation-specific structured problem definition — see /v1/capabilities for the exact shape per operation.",
"type": "object"
}
},
"required": [
"operation",
"spec"
],
"type": "object"
},
"bodyType": {
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://quantum-artificer.surewhynot.app/v1/quantum/simulate" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://quantum-artificer.surewhynot.app/v1/quantum/simulate");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://quantum-artificer.surewhynot.app/v1/quantum/simulate")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4873.json, and this resource appears in /discovery/resources and /discovery/search.