Keyword search over the x402 Bazaar discovery index (the ~8,000 most-used of 15k+ resource
Keyword search over the x402 Bazaar discovery index (the ~8,000 most-used of 15k+ resources, refreshed daily): find services by text query with price and usage filters, ranked by unique payers. The discovery endpoint itself has no search — this is it. Every match is reachable: `count` is the full number of hits and `offset`/`limit` page through all of them, up to 100 rows per call. A page past the end of the results is refused with a 400 and settles no payment.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-10
updated
Provider
datastand.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x470a1b647d668d3820add26d70c8371557ff4c6b",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": "20",
"max_price_usd": "0.05",
"min_payers": "10",
"offset": "0",
"q": "web search"
},
"type": "http"
},
"output": {
"example": {
"count": 2,
"page": {
"has_more": false,
"limit": 20,
"next_offset": null,
"offset": 0,
"returned": 2,
"total": 2
},
"query": "web search",
"results": [
{
"calls_30d": 19607,
"description": "Web search for agents",
"domain": "example.com",
"payers_30d": 386,
"price_usd": 0.01,
"resource": "https://example.com/api/search"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"description": "Rows per page, 1-100 (default 20)",
"type": "string"
},
"max_price_usd": {
"description": "Only resources priced at or below this USD amount",
"type": "string"
},
"min_payers": {
"description": "Only resources with at least this many unique 30-day payers",
"type": "string"
},
"offset": {
"description": "Skip this many ranked results (default 0). Use page.next_offset from the previous response. A page past the end costs nothing.",
"type": "string"
},
"q": {
"description": "Keywords, all must match (resource URL + description)",
"type": "string"
}
},
"required": [
"q"
],
"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://datastand.dev/api/search/bazaar" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://datastand.dev/api/search/bazaar");
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://datastand.dev/api/search/bazaar")
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/6505.json, and this resource appears in /discovery/resources and /discovery/search.