Machine-readable map of the x402 service ecosystem on Base: price range, category, endpoin
Machine-readable map of the x402 service ecosystem on Base: price range, category, endpoint count, live health & latency per service — built from our continuous catalog+reliability scan. ?since=<unix> for newly-launched services; ?category=/?health=/?sort= to filter & rank. Skip scanning the whole Bazaar yourself. Objective facts, machine-readable.
5000 (raw units)
price
2
calls / 30d
2
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": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"category": "ai",
"limit": "100",
"since": "1719500000",
"sort": "resources"
},
"type": "http"
},
"output": {
"example": {
"ecosystem_db_updated_at": 1719500000,
"healthy_services": 1405,
"returned": 1,
"services": [
{
"category": "ai",
"domain": "blockrun.ai",
"first_seen": 1719500000,
"health": "healthy",
"latency_ms": 398,
"price_max_usd": 5.002,
"price_min_usd": 0.001,
"resource_count": 185,
"service_name": "BlockRun.AI"
}
],
"total_services": 1614
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"description": "Machine-readable map of the x402 service ecosystem on Base: price range, category, endpoint count, live health & latency per service. ?since=<unix> returns newly-launched services; ?category=, ?health=, ?sort=resources|latency|price|newest to filter/rank. Built from our continuous catalog+reliability scan.",
"properties": {
"category": {
"description": "filter by category/tag (e.g. ai, crypto, defi, security)",
"type": "string"
},
"health": {
"description": "filter: healthy | misconfigured | down",
"type": "string"
},
"limit": {
"description": "max results (default 100, max 1000)",
"type": "string"
},
"since": {
"description": "unix seconds; return only services first seen at/after this (new launches)",
"type": "string"
},
"sort": {
"description": "resources | latency | price | newest",
"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/ecosystem/services" # -> 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/ecosystem/services");
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/ecosystem/services")
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/2232.json, and this resource appears in /discovery/resources and /discovery/search.