Raw observation history for any publicly listed x402 endpoint: discovery snapshots (listed
Raw observation history for any publicly listed x402 endpoint: discovery snapshots (listed/delisted/relisted, price changes, payTo changes) and probe time-series (uptime, latency, quoted amount) over the requested window (1-90 days).
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
x402-trust.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xbBECBE90F28632a9d52ed67b33b43767b8c89285",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"category": "data",
"discoverable": true,
"info": {
"input": {
"body": {
"days": 30,
"resource": "https://api.example.com/v1/thing"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"generatedAt": 1782826208450,
"probes": [
{
"amount": "200",
"latencyMs": 312,
"probeStatus": "ok",
"probedAtTs": 1782826208450,
"reachable": true
}
],
"resource": "https://api.example.com/v1/thing",
"snapshots": [
{
"accepts": [
{
"amount": "200",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0xa2477E16dCB42E2AD80f03FE97D7F1a1646cd1c0",
"scheme": "exact"
}
],
"listed": true,
"observedAtTs": 1782826208450,
"source": "bazaar"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"days": {
"type": "integer"
},
"resource": {
"type": "string"
}
},
"required": [
"resource",
"days"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
]
},
"method": {
"enum": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE",
"HEAD"
]
},
"type": {
"const": "http"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"generatedAt": {
"type": "integer"
},
"probes": {
"items": {
"properties": {
"amount": {
"type": "string"
},
"latencyMs": {
"type": "integer"
},
"probeStatus": {
"type": "string"
},
"probedAtTs": {
"type": "integer"
},
"reachable": {
"type": "boolean"
}
},
"required": [
"probedAtTs",
"reachable",
"probeStatus",
"latencyMs",
"amount"
],
"type": "object"
},
"type": "array"
},
"resource": {
"type": "string"
},
"snapshots": {
"items": {
"properties": {
"accepts": {
"items": {
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"network": {
"type": "string"
},
"payTo": {
"type": "string"
},
"scheme": {
"type": "string"
}
},
"required": [
"scheme",
"network",
"amount",
"asset",
"payTo"
],
"type": "object"
},
"type": "array"
},
"listed": {
"type": "boolean"
},
"observedAtTs": {
"type": "integer"
},
"source": {
"type": "string"
}
},
"required": [
"source",
"observedAtTs",
"listed",
"accepts"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"resource",
"generatedAt",
"snapshots",
"probes"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"x402",
"history",
"monitoring",
"timeseries"
]
}
}Use it
curl
curl "https://x402-trust.com/v1/x402-history" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-trust.com/v1/x402-history");
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://x402-trust.com/v1/x402-history")
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/7066.json, and this resource appears in /discovery/resources and /discovery/search.