Fetch any URL and get clean, LLM-ready page content — no API key, no account, no signup; p
Fetch any URL and get clean, LLM-ready page content — no API key, no account, no signup; pay per call in USDC on Base. Gets past common bot-blocking. Params: ?url=... (required), format=markdown|text|html (default markdown), max_chars=N (default 40000, max 120000). Returns { url, status, title, description, format, content, truncated, chars, latency_ms }; non-HTML URLs return raw content. For agents that need a page as text before summarising or extracting.
10000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-03
updated
Provider
uxus.finance · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "base",
"payTo": "0xE0Ed7A30589Fec49e98F2085c7162B90FdbB83de",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"format": "markdown | text | html. Default markdown.",
"max_chars": "Truncation limit, default 40000, max 120000.",
"url": "Absolute URL to fetch. Required."
},
"type": "http"
},
"output": {
"example": {
"chars": 1840,
"content": "# Example Article ...clean markdown...",
"description": "meta description text",
"format": "markdown",
"latency_ms": 620,
"status": 200,
"title": "Example Article",
"truncated": false,
"url": "https://example.com/article"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://uxus.finance/api/scrape" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://uxus.finance/api/scrape");
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://uxus.finance/api/scrape")
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/7111.json, and this resource appears in /discovery/resources and /discovery/search.