Is your x402 service still listed? The Bazaar removes resources that go without settlement
Is your x402 service still listed? The Bazaar removes resources that go without settlement, and no one tells you. We keep a daily snapshot of the whole catalog since June, so we can show whether your domain is present today, how its resource count moved day by day, and how long since each resource was last paid for. In our latest scan 620 of 2,147 domains are no longer present. Measured from our own snapshots.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-29
updated
Provider
x402.dailyelo.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xD617a7145ca56E3ed58d639F9DEC6999B22441eE",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"domain": "your-service.com"
},
"type": "http"
},
"output": {
"example": {
"latest_snapshot": "2026-08-01",
"market": {
"domains_absent_in_latest": 620,
"domains_tracked": 2147
},
"observed": true,
"resources_within_7_days_of_estimated_delist": 2,
"schema": "listingwatch/v1",
"you": {
"first_observed": "2026-06-12",
"last_observed": "2026-08-01",
"present_in_latest_snapshot": true,
"resources_now": 13,
"resources_peak": 15
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"description": "Is your x402 service still listed in the Bazaar? Resources are removed when they go without settlement, and no notice is sent. We keep every daily catalog snapshot since June, so we can show whether your domain is present today, how its resource count moved, and how long since each resource was last paid for. ?domain=<yours>; omit for market-wide disappearance stats.",
"properties": {
"domain": {
"description": "your domain, to check whether it is still listed",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.dailyelo.com/v1/listing/watch" # -> 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.dailyelo.com/v1/listing/watch");
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.dailyelo.com/v1/listing/watch")
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/2233.json, and this resource appears in /discovery/resources and /discovery/search.