Problem
Problem: Execute a bounded RQM Circuit IR circuit on the managed local statevector simulator. Input: JSON with circuit ir. Result: typed counts, probabilities, simulation configuration evidence. Limits: Local software evidence only; 16 qubits; 250 operations.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
497 msmedian answer time
$0.01listed price per call
$0.01price it asked us
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/managed-simulator-v1
| Category | Code and developer |
|---|---|
| Provider host | jobs.rqmtechnologies.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 2 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 | 497 ms |
Example input (from the provider)
{
"body": {
"idempotency_key": "example-managed-simulator-v1",
"max_total_price": "0.010000",
"request": {
"circuit_ir": {
"measurements": [
{
"basis": "Z",
"qubits": [
0
]
}
],
"operations": [
{
"gate": "h",
"targets": [
0
]
}
],
"qubits": 1,
"schema_version": "0.2"
},
"shots": 32,
"target": "rqm_statevector"
},
"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": {
"circuit_ir": {
"additionalProperties": false,
"properties": {
"measurements": {
"items": {
"additionalProperties": false,
"properties": {
"basis": {
"const": "Z",
"default": "Z",
"title": "Basis",
"type": "string"
},
"qubits": {
"items": {
"type": "integer"
},
"maxItems": 16,
"minItems": 1,
"title": "Qubits",
"type": "array"
},
"register": {
"anyOf": [
{
"maxLength": 64,
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Register"
}
},
"required": [
"qubits"
],
"title": "McpStudioMeasurement",
"type": "object"
},
"maxItems": 16,
"title": "Measurements",
"type": "array"
},
"metadata": {
"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"maxProperties": 32,
"title": "Metadata",
"type": "object"
},
"operations": {
"items": {
"additionalProperties": false,
"properties": {
"controls": {
"items": {
"type": "integer"
},
"maxItems": 1,
"title": "Controls",
"type": "array"
},
"gate": {
"enum": [
"h",
"x",
"y",
"z",
"s",
"sdg",
"t",
"tdg",
"rx",
"ry",
"rz",
"cx",
"cz",
"swap"
],
"title": "Gate",
"type": "string"
},
"params": {
"additionalProperties": {
"type": "number"
},
"maxProperties": 1,
"title": "Params",
"type": "object"
},
"targets": {
"items": {
"type": "integer"
},
"maxItems": 2,
"minItems": 1,
"title": "Targets",
"type": "array"
}
},
"required": [
"gate",
"targets"
],
"title": "McpStudioOperation",
"type": "object"
},
"maxItems": 250,
"title": "Operations",
"type": "array"
},
"qubits": {
"maximum": 16,
"minimum": 1,
"title": "Qubits",
"type": "integer"
},
"schema_version": {
"const": "0.2",
"de