Capture a URL and return its structured content (title, headings, text, links, images) as
Capture a URL and return its structured content (title, headings, text, links, images) as JSON
10000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-14
updated
Provider
nickname-trident-driveway.ngrok-free.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xB25572D7317eb98EBb39c45Da40eAAEA2A56c25e",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"url": "https://example.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"payment": {
"payer": "0x000000000000000000000000000000000000dEaD",
"priceUsdcUnits": 10000
},
"results": [
{
"data": {
"description": "For use in examples.",
"headings": [
{
"level": 1,
"text": "Example Domain"
}
],
"images": [],
"links": [
{
"href": "https://www.iana.org/domains/example",
"text": "More information..."
}
],
"markdown": "# Example Domain\n\nThis domain is for use in illustrative examples.",
"paragraphs": [
"This domain is for use in illustrative examples."
],
"title": "Example Domain",
"wordCount": 9
},
"status": "ok",
"url": "https://example.com"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"options": {
"additionalProperties": false,
"description": "Capture options forwarded to the capture pipeline (proxy/waitFor/actions/viewport)",
"properties": {
"actions": {
"description": "Post-load actions: click/type/wait objects (1 to 5)",
"items": {
"properties": {
"selector": {
"description": "CSS selector (click/type)",
"type": "string"
},
"text": {
"description": "Text to type (type only)",
"type": "string"
},
"timeoutMs": {
"description": "Wait duration in milliseconds (wait only, capped at 10000)",
"type": "integer"
},
"type": {
"description": "Action kind",
"enum": [
"click",
"type",
"wait"
],
"type": "string"
}
},
"type": "object"
},
"maxItems": 5,
"minItems": 1,
"type": "array"
},
"deviceScaleFactor": {
"description": "Device pixel ratio (clamped to at most 3)",
"type": "number"
},
"fullPage": {
"description": "Capture the full scrollable page",
"type": "boolean"
},
"isMobile": {
"description": "Render with a mobile viewport",
"type": "boolean"
},
"proxy": {
"description": "Proxy: \"auto\", \"stealth\", or an http(s) proxy URL string",
"type": "string"
},
"timeoutMs": {
"description": "Page load timeout in milliseconds",
"type": "integer"
},
"userAgent": {
"description": "Custom user agent string",
"type": "string"
},
"viewport": {
"description": "Capture viewport in CSS pixels (clamped to 320-3840 wide, 320-2160 tall)",
"properties": {
"height": {
"description": "Viewport height in CSS pixels",
"type": "integer"
},
"width": {
"description": "Viewport width in CSS pixels",
"type": "integer"
}
},
"type": "object"
},
"waitFor": {
"description": "Wait for a selector before capture (timeoutMs capped at 10000)",
"properties": {
"selector": {
"description": "CSS selector to wait for",
"type": "string"
},
"timeoutMs": {
"description": "Wait timeout in milliseconds (capped at 10000)",
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"schema": {
"description": "Optional natural-language description of the JSON to extract via a model",
"type": "string"
},
"url": {
"description": "A single page to extract",
"type": "string"
},
"urls": {
"description": "Batch of pages for one payment (at most 50)",
"items": {
"type": "string"
},
"maxItems": 50,
"type": "array"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://nickname-trident-driveway.ngrok-free.dev/v1/x402/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://nickname-trident-driveway.ngrok-free.dev/v1/x402/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://nickname-trident-driveway.ngrok-free.dev/v1/x402/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/7993.json, and this resource appears in /discovery/resources and /discovery/search.