Does this x402 seller actually deliver when paid? We test the full flow as a real buyer: q
Does this x402 seller actually deliver when paid? We test the full flow as a real buyer: quote, 402 requirements validation, a real capped probe purchase, settlement and delivery — not a lint that stops before money moves. The signed verdict states exactly which steps ran and what failed: 402-again loops, wrong payTo, malformed accepts, phantom endpoints. agenteconomy.cloud (mcp-pricing-v1.1)
250000 (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": "250000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"endpoint": "https://api.bitrefill.com/x402/gift-cards/search"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"signature": {
"alg": "ed25519",
"canonicalization": "RFC8785"
},
"verdict": {
"outcome": {
"conformant": true,
"depth": "full",
"steps": {
"deliver": {
"pass": true
},
"quote": {
"pass": true
},
"requirements": {
"pass": true
},
"settle": {
"pass": true
}
}
},
"type": "payment_flow_conformance"
},
"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": {
"endpoint": {
"description": "https:// resource URL whose x402 payment machinery to test",
"maxLength": 500,
"type": "string"
},
"expected_payto": {
"description": "optional 0x… address you expect the endpoint to charge to; mismatch is a named finding",
"type": "string"
},
"listing_id": {
"description": "optional catalog listing id — compares the advertised payTo against the cataloged seller",
"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/check" # -> 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/check");
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/check")
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/13281.json, and this resource appears in /discovery/resources and /discovery/search.