Execution Plan Select
Execution Plan Select: Select a supported execution plan against the supplied cost, depth, duration limits, and weights. Use when: Use when a bounded request matches rqm.studio.execution-plan-select-request.v1 and the caller needs the dec... Returns: ranked feasible plans, objective scores, selected plan identity. 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.execution-plan-select.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 | 2079 ms |
Example input (from the provider)
{
"body": {
"idempotency_key": "example-quantum.execution-plan-select.v1",
"max_total_price": "0.010000",
"request": {
"maximum_cost_usd": 1,
"maximum_depth": 100,
"maximum_duration_seconds": 60,
"plans": [
{
"compiled_depth": 10,
"estimated_cost_usd": 0.1,
"estimated_duration_seconds": 5,
"feasible": true,
"plan_id": "low-cost",
"target_snapshot_digest": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
},
{
"compiled_depth": 5,
"estimated_cost_usd": 0.2,
"estimated_duration_seconds": 4,
"feasible": true,
"plan_id": "low-depth",
"target_snapshot_digest": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}
],
"weights": {
"cost": 1,
"depth": 1,
"duration": 1
}
},
"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": {
"maximum_cost_usd": {
"maximum": 1000000000,
"minimum": 0,
"title": "Maximum Cost Usd",
"type": "number"
},
"maximum_depth": {
"maximum": 1000000,
"minimum": 0,
"title": "Maximum Depth",
"type": "integer"
},
"maximum_duration_seconds": {
"maximum": 31536000,
"minimum": 0,
"title": "Maximum Duration Seconds",
"type": "number"
},
"maximum_estimated_error_probability": {
"default": 1,
"maximum": 1,
"minimum": 0,
"title": "Maximum Estimated Error Probability",
"type": "number"
},
"maximum_queue_seconds": {
"default": 31536000,
"maximum": 31536000,
"minimum": 0,
"title": "Maximum Queue Seconds",
"type": "number"
},
"plans": {
"items": {
"additionalProperties": false,
"properties": {
"compiled_depth": {
"maximum": 1000000,
"minimum": 0,
"title": "Compiled Depth",
"type": "integer"
},
"estimate_model_id": {
"default": "caller-supplied-v1",
"maxLength": 128,
"minLength": 1,
"title": "Estimate Model Id",
"type": "string"
},
"estimated_cost_usd": {
"maximum": 1000000000,
"minimum": 0,
"title": "Estimated Cost Usd",
"type": "number"
},
"estimated_duration_seconds": {
"maximum": 31536000,
"minimum": 0,
"title": "Estimated Duration Seconds",
"type": "number"
},
"estimated_error_probability": {
"default": 0,
"maximum": 1,
"minimum": 0,
"title": "Estimated Error Probability",
"type": "number"
},
"feasible": {
"title": "Feasible",
"type": "boolean"
},
"plan_id": {
"maxLength": 128,
"minLength": 1,
"title": "Plan Id",
"type": "string"
},
"queue_seconds": {
"default": 0,
"maximum": 31536000,
"minimum": 0,
"title": "Queue Seconds",
"type": "number"
},
"shots": {
"default": 0,
"maximum": 10000000,
"minimum": 0,
"title": "Shots",
"type": "integer"
},
"target_snapshot_digest": {
"pattern": "^[a-f0-9]{64}$",
"title": "Target Snapshot Digest",
"type": "string"
}
},
"required": [
"plan_id",
"estimated_cost_usd",
"compiled_depth",
"estimated_duration_seconds",
"target_snapshot_digest",
"feasible"
],
"title": "Plan",
"type": "object"
},
"maxItems": 128,
"minItems": 1,
"title": "Plans",
"type": "array"
},
"weights": {
"additionalProperties": {
"type": "number"
},
"propertyNames": {
"enum": [
"cost",
"depth",
"duration",
"error",
"queue"
]
},
"title": "Weights",
"type": "object"
}
},
"required": [
"plans",
"weights",
"maximum_cost_usd",
"maximum_depth",
"maximum_duration_seconds"
],
"title": "PlanSelectionRequest",
"type": "object"
},
"schema_version": {
"const": "rqm.jobs.bazaar-buyer-job-request.v1"