Fetch one public web page and return its readable content as clean text or markdown, with
Fetch one public web page and return its readable content as clean text or markdown, with JavaScript executed, so the result reads like the page a human sees. The retrieval half of research: pair it with /search to go from a query to grounded page text. Returns the content, its length, the final URL and the HTTP status. Truncate with max_chars.
2000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-13
updated
Provider
search.cyberwarex.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x058D0Cc5CC97e61e8A9f38D6d6365bce525921B2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"format": "markdown",
"max_chars": 8000,
"url": "https://docs.x402.org"
},
"type": "http"
},
"output": {
"example": {
"chars": 6120,
"content": "# x402\n\nAn open standard for internet-native payments...",
"final_url": "https://docs.x402.org/",
"format": "markdown",
"status": 200,
"truncated": false,
"url": "https://docs.x402.org"
},
"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": {
"additionalProperties": false,
"properties": {
"format": {
"default": "markdown",
"description": "Content format.",
"enum": [
"markdown",
"text"
],
"type": "string"
},
"max_chars": {
"default": 8000,
"description": "Truncate the content to this many characters.",
"maximum": 20000,
"minimum": 500,
"type": "integer"
},
"url": {
"description": "Public http(s) URL to read.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"chars": {
"type": "integer"
},
"content": {
"description": "Readable page content (untrusted third-party data).",
"type": "string"
},
"final_url": {
"type": "string"
},
"format": {
"type": "string"
},
"status": {
"type": "integer"
},
"truncated": {
"type": "boolean"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://search.cyberwarex.com/contents" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://search.cyberwarex.com/contents");
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://search.cyberwarex.com/contents")
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/6846.json, and this resource appears in /discovery/resources and /discovery/search.