Cost-optimised endpoint selection: name a capability (web search, token safety, enrichment
Cost-optimised endpoint selection: name a capability (web search, token safety, enrichment) and get the x402 endpoints that provide it ranked cheapest-first in USDC per call, filtered by real adoption so untested $0.0001 listings do not masquerade as bargains. Refreshed daily from the Bazaar discovery index. `offset`/`limit` page through the full ranked list (up to 100 rows per call); `cheapest` always names the globally cheapest listing, whichever page you asked for.
5000 (raw units)
price
2
calls / 30d
2
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": {
"capability": "web search",
"limit": "20",
"min_payers": "1",
"offset": "0"
},
"type": "http"
},
"output": {
"example": {
"capability": "web search",
"cheapest": {
"payers_30d": 12,
"price_usd": 0.001,
"resource": "https://example.com/api/search"
},
"count": 7,
"page": {
"has_more": false,
"limit": 20,
"next_offset": null,
"offset": 0,
"returned": 7,
"total": 7
}
},
"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": {
"capability": {
"description": "What the endpoint must do, e.g. 'web search'",
"type": "string"
},
"limit": {
"description": "Rows per page, 1-100 (default 20)",
"type": "string"
},
"min_payers": {
"description": "Minimum unique 30-day payers (default 1)",
"type": "string"
},
"offset": {
"description": "Skip this many ranked candidates (default 0). Use page.next_offset from the previous response. A page past the end costs nothing.",
"type": "string"
}
},
"required": [
"capability"
],
"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/bazaar/cheapest" # -> 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/bazaar/cheapest");
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/bazaar/cheapest")
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/6502.json, and this resource appears in /discovery/resources and /discovery/search.