Web search plus page reading in one call: answer with sources
Web search plus page reading in one call: answer with sources. Runs a web search, scrapes the top results, and returns the ranked search results together with each page's content as clean LLM-ready markdown, so an agent gets the SERP AND the underlying text without a second round of scrape calls. Per-page fetch errors are reported honestly per URL.
80000 (raw units)
price
169
calls / 30d
5
unique payers
2026-09-16
updated
Provider
api.kadec0.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x4df66B6c140778fe0717880A7c6dDE5Ea53AcDeA",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "80000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"fetch_top": "3",
"q": "how does x402 payment protocol work"
},
"type": "http"
},
"output": {
"example": {
"count": 2,
"items": [
{
"query": "how does x402 payment protocol work",
"resultCount": 5,
"results": [
{
"rank": 1,
"snippet": "HTTP 402...",
"title": "x402 docs",
"type": "search_result",
"url": "https://example.com/x402"
}
],
"type": "serp_read"
},
{
"httpStatus": 200,
"markdown": "# x402\nThe payment-required protocol...",
"markdownTruncated": false,
"rank": 1,
"title": "x402 docs",
"type": "page_extract",
"url": "https://example.com/x402",
"wordCount": 900
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"engine": {
"default": "auto",
"description": "search backend: auto (recommended) or yahoo/yandex (web); bing (news)",
"type": "string"
},
"fetch_top": {
"default": "3",
"description": "how many top results to fetch and extract, cap 5",
"type": "string"
},
"maxChars": {
"default": "8000",
"description": "max markdown chars per fetched page",
"type": "string"
},
"mode": {
"default": "web",
"enum": [
"web",
"news"
],
"type": "string"
},
"num_results": {
"default": "5",
"description": "ranked results to return, cap 25",
"type": "string"
},
"q": {
"description": "search query",
"type": "string"
},
"region": {
"default": "us-en",
"description": "locale, e.g. us-en, uk-en, de-de",
"type": "string"
},
"safesearch": {
"default": "moderate",
"enum": [
"on",
"moderate",
"off"
],
"type": "string"
},
"timelimit": {
"description": "restrict to past day/week/month/year",
"enum": [
"d",
"w",
"m",
"y"
],
"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://api.kadec0.xyz/v1/serp-read" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.kadec0.xyz/v1/serp-read");
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://api.kadec0.xyz/v1/serp-read")
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/309.json, and this resource appears in /discovery/resources and /discovery/search.