Paid x402/MCP/A2A/Bazaar consult
Paid x402/MCP/A2A/Bazaar consult. Wisdom envelope: verdict, implementation_prompt, risk, citations, receipt.
100000 (raw units)
price
7
calls / 30d
1
unique payers
2026-09-14
updated
Provider
x402orcle.vercel.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xAB745e5F576667037696e78ba7dA28E193E4423D",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"audience": "agent",
"question": "Why is my Bazaar listing unranked after 402s with no settlement?"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"citations": [
"https://docs.cdp.coinbase.com/x402/seller/get-discovered"
],
"implementation_prompt": "…",
"risk": "burning USDC on frozen catalog copy",
"verdict": "no_rank_without_settle",
"wisdom": "Cataloging is settlement-triggered."
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"audience": {
"type": "string"
},
"question": {
"type": "string"
}
},
"required": [
"question"
]
},
"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": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402orcle.vercel.app/api/consult/oracle_ask" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402orcle.vercel.app/api/consult/oracle_ask");
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://x402orcle.vercel.app/api/consult/oracle_ask")
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/11028.json, and this resource appears in /discovery/resources and /discovery/search.