On-chain x402 settlement summary for an address from the decentralized x402 Base subgraph
On-chain x402 settlement summary for an address from the decentralized x402 Base subgraph on The Graph Network. POST {address}. Returns lifetime stats as payer + recipient (totalPayments, totalVolume, first/last seen), recent 10 payments each direction, facilitator metadata if applicable, plus indexed_through_block for freshness. Decentralized, verifiable. Distinct from /ask. $0.01 USDC on Base.
10000 (raw units)
price
3
calls / 30d
1
unique payers
2026-08-29
updated
Provider
graphadvocate.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0FF5A6ecef783BBA35463ec2F8403B9B5e9e7C86",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "0x0FF5A6ecef783BBA35463ec2F8403B9B5e9e7C86"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"address": "0x0ff5a6ecef783bba35463ec2f8403b9b5e9e7c86",
"as_payer": null,
"as_recipient": {
"lastPaymentTimestamp": "1780500000",
"totalPayments": "47",
"totalVolumeDecimal": "0.47"
},
"facilitator": null,
"indexed_through_block": 46514000,
"indexed_through_timestamp": 1780580000,
"indexer_has_errors": false,
"is_in_index": true,
"recent_received": [
{
"amountDecimal": "0.01",
"blockNumber": "46500000",
"from": "0xab…",
"transferMethod": "EIP3009"
}
],
"recent_sent": [],
"source": "graph-network:x402-base"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"address": {
"description": "Lowercase 0x address to look up",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
}
},
"required": [
"address"
],
"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": {
"example": {
"properties": {
"address": {
"type": "string"
},
"as_payer": {
"type": [
"object",
"null"
]
},
"as_recipient": {
"type": [
"object",
"null"
]
},
"indexed_through_block": {
"type": "number"
},
"is_in_index": {
"type": "boolean"
}
},
"required": [
"address",
"is_in_index",
"indexed_through_block"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://graphadvocate.com/onchain-x402/address" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://graphadvocate.com/onchain-x402/address");
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://graphadvocate.com/onchain-x402/address")
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/5011.json, and this resource appears in /discovery/resources and /discovery/search.