Provider Readiness Check
Provider Readiness Check: Accept or reject this bounded circuit for the supplied pinned provider target and readiness... Use when: Use when a bounded request matches rqm.studio.provider-readiness-check-request.v1 and the caller needs the... Returns: readiness verdict, rule results and blockers, target provenance. Boundaries: Deterministic bounded local software evidence only; no QPU, live-provider, physical, formal-proof, certif...
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://jobs.rqmtechnologies.com/x402/buyer-jobs/quantum.provider-readiness-check.v1
| Category | Everything else |
|---|---|
| Provider host | jobs.rqmtechnologies.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 595 ms |
Example input (from the provider)
{
"body": {
"idempotency_key": "example-quantum.provider-readiness-check.v1",
"max_total_price": "0.010000",
"request": {
"operations": [
{
"gate": "h",
"targets": [
0
]
},
{
"gate": "cx",
"targets": [
0,
1
]
}
],
"qubit_count": 2,
"rules": {
"maximum_depth_upper_bound": 10,
"require_all_gates_supported": true,
"require_coupling_compatible": true
},
"target": {
"basis_gates": [
"h",
"cx",
"rz"
],
"coupling_edges": [
[
0,
1
],
[
1,
2
],
[
2,
3
]
],
"maximum_qubits": 4,
"snapshot_digest": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"target_id": "fixture-target"
}
},
"schema_version": "rqm.jobs.bazaar-buyer-job-request.v1"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"idempotency_key": {
"maxLength": 128,
"minLength": 1,
"pattern": "^[A-Za-z0-9][A-Za-z0-9._:-]*$",
"type": "string"
},
"max_total_price": {
"pattern": "^(?:0|[1-9]\\d{0,13})(?:\\.\\d{1,6})?$",
"type": "string"
},
"request": {
"additionalProperties": false,
"properties": {
"operations": {
"items": {
"additionalProperties": false,
"properties": {
"angle_radians": {
"anyOf": [
{
"maximum": 6.283185307179586,
"minimum": -6.283185307179586,
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Angle Radians"
},
"gate": {
"enum": [
"x",
"z",
"h",
"s",
"t",
"rx",
"rz",
"cx",
"cz"
],
"title": "Gate",
"type": "string"
},
"targets": {
"items": {
"type": "integer"
},
"maxItems": 2,
"minItems": 1,
"title": "Targets",
"type": "array"
}
},
"required": [
"gate",
"targets"
],
"title": "CircuitOperation",
"type": "object"
},
"maxItems": 4096,
"minItems": 1,
"title": "Operations",
"type": "array"
},
"qubit_count": {
"maximum": 1024,
"minimum": 1,
"title": "Qubit Count",
"type": "integer"
},
"rules": {
"additionalProperties": false,
"properties": {
"maximum_depth_upper_bound": {
"maximum": 1000000,
"minimum": 1,
"title": "Maximum Depth Upper Bound",
"type": "integer"
},
"require_all_gates_supported": {
"title": "Require All Gates Supported",
"type": "boolean"
},
"require_coupling_compatible": {
"title": "Require Coupling Compatible",
"type": "boolean"
}
},
"required": [
"require_all_gates_supported",
"require_coupling_compatible",
"maximum_depth_upper_bound"
],
"title": "ReadinessRules",
"type": "object"
},
"target": {
"additionalProperties": false,
"properties": {
"basis_gates": {
"items": {
"enum": [
"x",
"z",
"h",
"s",
"t",
"rx",
"rz",
"cx",
"cz"
],
"type": "string"
},
"maxItems": 9,
"minItems": 1,
"title": "Basis Gates",
"type": "array"
},
"captured_at": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Captured At"
},
"cost_per_shot_usd": {
"anyOf": [
{
"maximum": 1000000,
"minimum": 0,
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Cost Per Shot Usd"
},
"coupling_edges": {
"items": {
"maxItems": 2,
"minItems": 2,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
}
],
"type": "array"