Is this x402 seller safe to pay? Verify before you send money: one call returns the seller
Is this x402 seller safe to pay? Verify before you send money: one call returns the seller's actual on-chain payment history — verified USDC revenue, real distinct buyers, wash and exchange exclusions applied — not a liveness ping or an opaque score. Ed25519-signed, recomputable from public Base data. From the trust hub that indexes every Bazaar seller's payment history. Never in your payment path. agenteconomy.cloud (mcp-pricing-v1.1)
100000 (raw units)
price
2
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": "100000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"seller": "0x480cd46e6fade651a0437deadda53d5c8e7d846a"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"signature": {
"alg": "ed25519",
"canonicalization": "RFC8785"
},
"verdict": {
"evidence": {
"unique_buyers_30d": 17,
"verified_revenue_30d_micro": 8400000
},
"outcome": {
"evidence_state": "verified",
"tier": "verified"
},
"type": "seller_trust"
},
"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": {
"seller": {
"description": "0x… payTo address or 12-hex slug — exactly one seller per call",
"type": "string"
}
},
"required": [
"seller"
],
"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/verify" # -> 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/verify");
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/verify")
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/13279.json, and this resource appears in /discovery/resources and /discovery/search.