Any URL to LLM-ready markdown — main content extracted (Readability), boilerplate stripped
Any URL to LLM-ready markdown — main content extracted (Readability), boilerplate stripped. $0.002 per page in USDC (x402), no signup, no API key, no rate limit.
2000 (raw units)
price
2
calls / 30d
1
unique payers
2026-08-26
updated
Provider
forage.cash · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xa25b574e35370A6Fbb4C723493B43E0369f93F57",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"url": "https://example.com/article"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"byline": null,
"contentType": "text/html",
"fetchedAt": "2026-01-01T00:00:00.000Z",
"finalUrl": "https://example.com/article",
"markdown": "# …",
"text": null,
"title": "…",
"truncated": false,
"url": "https://example.com/article"
},
"type": "json"
}
},
"schema": {
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"maxChars": {
"description": "Cap on returned markdown/text length (default 200000)",
"maximum": 500000,
"minimum": 1000,
"type": "integer"
},
"url": {
"description": "Public http(s) URL to fetch",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}
}
}Use it
curl
curl "https://forage.cash/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://forage.cash/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://forage.cash/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/15404.json, and this resource appears in /discovery/resources and /discovery/search.