Listed but never paid? One call answers why
Listed but never paid? One call answers why. We run a real paid test purchase against your x402 endpoint (not a lint) and name the exact fault when the flow breaks — 402-again loops, invalid_payload, malformed accepts. Then the half no linter has: your category's actual on-chain demand — who earns, the median price paid, your price against it. Signed, recomputable verdict from the trust hub that indexes every Bazaar seller's payment history. agenteconomy.cloud (mcp-pricing-v1.1)
1000000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-06
updated
Provider
mcp.agenteconomy.cloud · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xeed6af31937a6123924d4ecdc3b3ed729f92867e",
"asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"amount": "1000000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"asserted_price_micro": 50000,
"endpoint": "https://api.bitrefill.com/x402/gift-cards/search"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"signature": {
"alg": "ed25519",
"canonicalization": "RFC8785"
},
"verdict": {
"blocker": {
"code": "overpriced_vs_median"
},
"funnel": {
"conformance": {
"conformant": true,
"depth": "full"
},
"demand": {
"earners": 4,
"median_payment_30d_micro": 12000
}
},
"type": "seller_diagnostic"
},
"verdict_version": "verdict-v1.1.0"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"asserted_price_micro": {
"description": "your advertised price in micro-USDC — becomes the price basis vs the category median; defaults to the live quote's cheapest recognized entry",
"minimum": 1,
"type": "integer"
},
"endpoint": {
"description": "https:// resource URL of the x402 endpoint to diagnose (pre-catalog endpoints welcome — findability reports honestly)",
"maxLength": 500,
"type": "string"
},
"expected_payto": {
"description": "optional 0x… address you expect the endpoint to charge to; mismatch is a named finding",
"type": "string"
}
},
"required": [
"endpoint"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://mcp.agenteconomy.cloud/api/v1/diagnose" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mcp.agenteconomy.cloud/api/v1/diagnose");
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://mcp.agenteconomy.cloud/api/v1/diagnose")
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/13280.json, and this resource appears in /discovery/resources and /discovery/search.