Resolve a public page into clean markdown for autonomous agents, with a machine-readable u
Resolve a public page into clean markdown for autonomous agents, with a machine-readable upgrade to a 30-day daily watch.
2000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-17
updated
Provider
fetchdelta.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x788aa4A08da3025c5b5a68BE80752CA244E73158",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"url": "https://example.com/"
},
"type": "http"
},
"output": {
"example": {
"excerpt": "Short summary.",
"headings": [
"Example title"
],
"markdown": "# Example title",
"monitoringUpgrade": {
"checkoutUrl": "https://fetchdelta.com/api/page-watch-30d?url=https%3A%2F%2Fexample.com%2F",
"currency": "USDC",
"description": "Create an account-free daily change watch for this page, valid for 30 days.",
"durationDays": 30,
"maxUrls": 5,
"method": "GET",
"price": "$0.50",
"product": "page-watch-30d",
"protocol": "x402"
},
"title": "Example title",
"url": "https://example.com/"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"url": {
"description": "Absolute URL of a public HTTP(S) page to fetch. Use docs, changelogs, release notes, pricing pages, policy pages, or other public pages. Private, localhost, credentialed, and non-HTTP(S) URLs are rejected.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"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://fetchdelta.com/api/resolve" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://fetchdelta.com/api/resolve");
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://fetchdelta.com/api/resolve")
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/6543.json, and this resource appears in /discovery/resources and /discovery/search.