Search Aggregator fast tier: Serper web search (titles, links, snippets), fixed price $0
Search Aggregator fast tier: Serper web search (titles, links, snippets), fixed price $0.01 USDC. POST JSON body {query (required), max_results (optional 1-20, default 5)}. Mode is fixed by the path — no mode field needed, the quoted price is always the settled price.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-14
updated
Provider
x402-production-d123.up.railway.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9340d1d596fc63693b71a454516367ece2526f39",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "7DEd9Hr9EEFTPZGRqUgotuP6kDdmmqWyErke562QEs6d",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"max_results": 5,
"query": "base network fees"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"answer": "Base fees are typically under $0.01 ...",
"latency_ms": 1200,
"providers_used": [
"tavily",
"exa",
"firecrawl"
],
"query": "base network fees",
"results": [
{
"content": "Full extracted page content...",
"published_date": null,
"snippet": "Base fees are...",
"source_provider": "firecrawl",
"title": "Base network fees explained",
"url": "https://example.com/base-fees"
}
],
"warnings": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"max_results": {
"description": "max results, 1-20 (defaults: fast 5, deep 10)",
"type": "number"
},
"query": {
"description": "search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"answer": {
"type": [
"string",
"null"
]
},
"latency_ms": {
"type": "number"
},
"providers_used": {
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"type": "string"
},
"results": {
"items": {
"properties": {
"content": {
"type": [
"string",
"null"
]
},
"published_date": {
"type": [
"string",
"null"
]
},
"snippet": {
"type": "string"
},
"source_provider": {
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"url",
"title",
"snippet",
"content",
"source_provider",
"published_date"
],
"type": "object"
},
"type": "array"
},
"warnings": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"query",
"results",
"answer",
"providers_used",
"latency_ms",
"warnings"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-production-d123.up.railway.app/search/fast" # -> 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-production-d123.up.railway.app/search/fast");
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-production-d123.up.railway.app/search/fast")
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/12613.json, and this resource appears in /discovery/resources and /discovery/search.