Read any web page or article: fetch up to 5 URLs in one batch call and extract the main co
Read any web page or article: fetch up to 5 URLs in one batch call and extract the main content as clean, LLM-ready markdown or plain text. Convert webpages to markdown, scrape page text, pull article content for RAG ingestion and AI agent context.
10000 (raw units)
price
6
calls / 30d
5
unique payers
2026-09-15
updated
Provider
websearch.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xF752eEB75d3Bea24AA867ad93bfd8EF5a2F431B9",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0xF752eEB75d3Bea24AA867ad93bfd8EF5a2F431B9",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0xF752eEB75d3Bea24AA867ad93bfd8EF5a2F431B9",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "search",
"info": {
"input": {
"method": "GET",
"queryParams": {
"chunks_per_source": 3,
"format": "markdown",
"query": "artificial intelligence",
"urls": "https://en.wikipedia.org/wiki/Artificial_intelligence"
},
"type": "http"
},
"output": {
"example": {
"queried_at": "2026-07-01T12:00:00Z",
"results": [
{
"content": "# Artificial intelligence\n\nArtificial intelligence (AI) is intelligence exhibited by machines...",
"url": "https://en.wikipedia.org/wiki/Artificial_intelligence"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"chunks_per_source": {
"description": "Relevant snippets per URL, 1..5 (requires query)",
"maximum": 5,
"minimum": 1,
"type": "integer"
},
"format": {
"default": "markdown",
"description": "Output content format",
"enum": [
"markdown",
"text"
],
"type": "string"
},
"query": {
"description": "Optional intent — extracted chunks are reranked by relevance to it",
"maxLength": 1000,
"type": "string"
},
"urls": {
"description": "One URL or an array of up to 5 absolute http(s) URLs to extract content from",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"maxItems": 5,
"minItems": 1,
"type": "array"
}
]
}
},
"required": [
"urls"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"failed_urls": {
"description": "URLs that could not be extracted",
"items": {
"type": "string"
},
"type": "array"
},
"queried_at": {
"description": "Time the extraction was executed (UTC)",
"format": "date-time",
"type": "string"
},
"results": {
"items": {
"properties": {
"content": {
"description": "Extracted page content as markdown or text",
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"url",
"content"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"queried_at",
"results"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"extract",
"extraction",
"web-scraping",
"scrape",
"markdown",
"html-to-markdown",
"url-to-markdown",
"reader",
"read-web-page",
"fetch-url",
"batch",
"rag",
"ai-agents"
]
}
}Use it
curl
curl "https://websearch.use.x402atlas.com/extract" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://websearch.use.x402atlas.com/extract");
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://websearch.use.x402atlas.com/extract")
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/458.json, and this resource appears in /discovery/resources and /discovery/search.