Extrae el contenido de una URL y lo devuelve limpio en Markdown/HTML para el contexto de u
Extrae el contenido de una URL y lo devuelve limpio en Markdown/HTML para el contexto de un LLM.
20000 (raw units)
price
7
calls / 30d
4
unique payers
2026-09-17
updated
Provider
xl402.agentsats.org · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2a373cb1eBB8907A95626c0B0aeF47F575a0Ab87",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x2a373cb1eBB8907A95626c0B0aeF47F575a0Ab87",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"format": "markdown",
"only_main_content": true,
"timeout_ms": 15000,
"url": "https://example.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"content": "# Example Domain\n\nThis domain is for use in illustrative examples…",
"fetched_at": "2026-06-13T00:00:00.000Z",
"final_url": "https://example.com/",
"format": "markdown",
"metadata": {
"language": "en",
"status_code": 200,
"title": "Example Domain"
},
"requested_url": "https://example.com",
"usage": {
"credits": 1,
"provider": "firecrawl"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"format": {
"default": "markdown",
"enum": [
"markdown",
"html"
]
},
"only_main_content": {
"default": true,
"description": "Elimina nav/footer/anuncios",
"type": "boolean"
},
"timeout_ms": {
"default": 15000,
"maximum": 30000,
"minimum": 1000,
"type": "integer"
},
"url": {
"description": "URL absoluta http(s) a extraer",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"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": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"content": {
"description": "Contenido limpio en el formato pedido",
"type": "string"
},
"fetched_at": {
"format": "date-time",
"type": "string"
},
"final_url": {
"description": "URL tras redirecciones",
"format": "uri",
"type": "string"
},
"format": {
"enum": [
"markdown",
"html"
]
},
"metadata": {
"properties": {
"description": {
"type": "string"
},
"language": {
"type": "string"
},
"status_code": {
"type": "integer"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"requested_url": {
"format": "uri",
"type": "string"
},
"usage": {
"properties": {
"credits": {
"minimum": 1,
"type": "integer"
},
"provider": {
"const": "firecrawl"
}
},
"required": [
"provider",
"credits"
],
"type": "object"
}
},
"required": [
"requested_url",
"final_url",
"fetched_at",
"format",
"content",
"metadata",
"usage"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://xl402.agentsats.org/v1/web-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://xl402.agentsats.org/v1/web-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://xl402.agentsats.org/v1/web-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/3144.json, and this resource appears in /discovery/resources and /discovery/search.