# RQM Provider Target Compile

> RQM Provider Target Compile is a paid API for AI agents from jobs.rqmtechnologies.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Compiles a bounded quantum circuit to a specified pinned provider target and returns compatibility evidence

## Facts

- Endpoint: POST https://jobs.rqmtechnologies.com/x402/buyer-jobs/quantum.provider-target-compile.v1
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rqm-provider-target-compile-e0ee4b44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d2NPxrVgZN518aBHhEsgj

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability rqm-provider-target-compile-e0ee4b44 -d '<json body>'
```

Example prompt: Compile my 5-qubit quantum circuit — with gates h on qubit 0, cx on qubits 0 and 1, and rz(1.5708) on qubit 1 — to provider target 'ibm-falcon-r5' with snapshot digest 'a3f2...e1b0', which supports basis gates h, cx, and rz up to 27 qubits, and give me the compatibility evidence.

## When to prefer this

Use this endpoint when you have a bounded quantum circuit (known qubit count and gate list) and a pinned provider target snapshot, and need to compile/transpile the circuit to that specific hardware's native gate set with formal compatibility evidence. Prefer this over simulation endpoints when you need hardware-specific transpilation rather than execution, and over generic validation endpoints when you need a compiled artifact rather than just a pass/fail result.

## Known failure modes

- Circuit qubit count exceeds target maximum_qubits — validation error
- Gate types in circuit not present in target basis_gates — incompatibility error
- Coupling edges violated with directed coupling required — topology error
- Invalid snapshot_digest format (not 64 hex chars) — schema validation error
- Operations array empty or exceeds 4096 gate limit — request validation error
- angle_radians out of range [-2π, 2π] for rotation gates — value error
- Idempotency key format invalid — schema rejection

## How this service works

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...

## Output

Returns compiled circuit output and compatibility evidence demonstrating how the input circuit maps to the pinned provider target's basis gates and coupling topology, including any transpilation steps applied to satisfy hardware constraints

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "request": {
   "type": "object",
   "title": "TargetCompileRequest",
   "required": [
    "qubit_count",
    "operations",
    "target"
   ],
   "properties": {
    "target": {
     "type": "object",
     "title": "TargetSnapshot",
     "required": [
      "target_id",
      "snapshot_digest",
      "maximum_qubits",
      "basis_gates"
     ],
     "properties": {
      "target_id": {
       "type": "string",
       "title": "Target Id",
       "maxLength": 128,
       "minLength": 1
      },
      "source_uri": {
       "anyOf": [
        {
         "type": "string",
         "maxLength": 2048
        },
        {
         "type": "null"
        }
       ],
       "title": "Source Uri",
       "default": null
      },
      "basis_gates": {
       "type": "array",
       "items": {
        "enum": [
         "x",
         "z",
         "h",
         "s",
         "t",
         "rx",
         "rz",
         "cx",
         "cz"
        ],
        "type": "string"
       },
       "title": "Basis Gates",
       "maxItems": 9,
       "minItems": 1
      },
      "captured_at": {
       "anyOf": [
        {
         "type": "string",
         "format": "date-time"
        },
        {
         "type": "null"
        }
       ],
       "title": "Captured At",
       "default": null
      },
      "provider_name": {
       "type": "string",
       "title": "Provider Name",
       "default": "declared_snapshot",
       "maxLength": 128,
       "minLength": 1
      },
      "coupling_edges": {
       "type": "array",
       "items": {
        "type": "array",
        "maxItems": 2,
        "minItems": 2,
        "prefixItems": [
         {
          "type": "integer"
         },
         {
          "type": "integer"
         }
        ]
       },
       "title": "Coupling Edges",
       "maxItems": 8192
      },
      "maximum_qubits": {
       "type": "integer",
       "title": "Maximum Qubits",
       "maximum": 1024,
       "minimum": 1
      },
      "snapshot_digest": {
       "type": "string",
       "title": "Snapshot Digest",
       "pattern": "^[a-f0-9]{64}$"
      },
      "gate_error_rates": {
       "type": "object",
       "title": "Gate Error Rates",
       "maxProperties": 32,
       "additionalProperties": {
        "type": "number"
       }
      },
      "cost_per_shot_usd": {
       "anyOf": [
        {
         "type": "number",
         "maximum": 1000000,
         "minimum": 0
        },
        {
  
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rqm-provider-target-compile-e0ee4b44/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jobs.rqmtechnologies.com](https://www.zero.xyz/host/jobs.rqmtechnologies.com/llms.txt)
