Use when an agent needs route task
Use when an agent needs route task. Returns Agent Economy task router: discover protocol, market-activity, and paid services from a read-only MCP source, with normalized evidence and qualified-session handoff. $0.01.
10000 (raw units)
price
9
calls / 30d
2
unique payers
2026-09-14
updated
Provider
api.oblique.markets · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"task": "example"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"candidates_evaluated": 3,
"generated_at": "2026-08-30T08:00:00.000Z",
"matches_found": 3,
"query": "find paid market activity service",
"results": [
{
"endpoint_url": "https://agent-economy.example/mcp",
"evidence_status": "source-retrieved",
"handoff_url": "https://api.oblique.markets/api/v1/route-task/handoff?token=...",
"health_score": 0.94,
"mcp_schema": {
"inputSchema": {
"type": "object"
},
"name": "market_stats"
},
"name": "market-activity-service",
"price_usd": 0.01,
"qualified_session_token": "eyJ2IjoxfQ.signature",
"receipt_binding": {
"bound": false
},
"retrieval_timestamp": "2026-08-30T08:00:00.000Z",
"source": "agent-economy-mcp",
"source_tool": "market_stats"
}
],
"source_retrieval": {
"evidence_status": "source-retrieved",
"retrieved_at": "2026-08-30T08:00:00.000Z",
"source": "https://remote.observer/mcp",
"tools_queried": [
"market_stats"
]
},
"tier": "paid"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"constraints": {
"properties": {
"category": {
"type": "string"
},
"chain": {
"enum": [
"base",
"solana"
],
"type": "string"
},
"max_price": {
"type": "number"
}
},
"type": "object"
},
"seller_delivery_receipt": {
"type": "object"
},
"task": {
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"candidates_evaluated": {
"type": "integer"
},
"generated_at": {
"type": "string"
},
"matches_found": {
"type": "integer"
},
"query": {
"type": "string"
},
"results": {
"items": {
"properties": {
"endpoint_url": {
"type": "string"
},
"evidence_status": {
"type": "string"
},
"handoff_url": {
"type": "string"
},
"health_score": {
"type": "number"
},
"mcp_schema": {
"properties": {
"inputSchema": {
"properties": {
"type": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"price_usd": {
"type": "number"
},
"qualified_session_token": {
"type": "string"
},
"receipt_binding": {
"properties": {
"bound": {
"type": "boolean"
}
},
"type": "object"
},
"retrieval_timestamp": {
"type": "string"
},
"source": {
"type": "string"
},
"source_tool": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"source_retrieval": {
"properties": {
"evidence_status": {
"type": "string"
},
"retrieved_at": {
"type": "string"
},
"source": {
"type": "string"
},
"tools_queried": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"tier": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/route-task" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.oblique.markets/api/v1/paid/route-task");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.oblique.markets/api/v1/paid/route-task")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/518.json, and this resource appears in /discovery/resources and /discovery/search.