Provider Target Compile
Provider Target Compile: Compile this bounded circuit to the supplied pinned provider target and return compatibility... Use when: Use when a bounded request matches rqm.studio.provider-target-compile-request.v1 and the caller needs the d... Returns: compiled artifact, gate mapping, pinned target snapshot and blockers. 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-target-compile.v1
| Category | Code and developer |
|---|---|
| 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 | 594 ms |
Example input (from the provider)
{
"body": {
"idempotency_key": "example-quantum.provider-target-compile.v1",
"max_total_price": "0.010000",
"request": {
"operations": [
{
"gate": "h",
"targets": [
0
]
},
{
"gate": "cx",
"targets": [
0,
1
]
}
],
"qubit_count": 2,
"require_directed_coupling": 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"
},
"require_directed_coupling": {
"default": true,
"title": "Require Directed Coupling",
"type": "boolean"
},
"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"
},
"maxItems": 8192,
"title": "Coupling Edges",
"type": "array"
},
"gate_error_rates": {
"additionalProperties": {
"type": "number"
},
"maxProperties": 32,
"title": "Gate Error Rates",
"type": "object"
},
"maximum_age_seconds": {
"anyOf": [
{
"maximum": 31536000,
"minimum": 0,
"type": "integer"
},
{
"type": "null"
}