Keyword search over the x402 Bazaar discovery index (the ~8,000 most-used of 15k
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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
32 msmedian answer time
$0.005listed price per call
$0.005price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://datastand.dev/api/search/bazaar
| Category | Market data |
|---|---|
| Provider host | datastand.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 32 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"limit": "20",
"max_price_usd": "0.05",
"min_payers": "10",
"offset": "0",
"q": "web search"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}