Complete x402 endpoint delivery dataset, 464 rows, 22 columns
Complete x402 endpoint delivery dataset, 464 rows, 22 columns. For each endpoint: the price the catalog advertises, the price its own 402 response demanded, the wallet paid, whether payment settled, the HTTP status returned after paying, response size, content type, latency, a verbatim 600-character sample of what came back, and the settlement transaction hash. Measured 2026-09-06T20:05Z to 2026-09-06T20:28Z on Base. Observations only, no analysis. CSV.
29000000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-07
updated
Provider
x402-delivery-map.owenlvll.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xcF98E5e2DBe0eabAd95e9df7c54400e94C1eFE7E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "29000000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-delivery-map.owenlvll.workers.dev/data.csv" # -> 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-delivery-map.owenlvll.workers.dev/data.csv");
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-delivery-map.owenlvll.workers.dev/data.csv")
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/13889.json, and this resource appears in /discovery/resources and /discovery/search.