Extract a public HTTP(S) web page into structured JSON with a clean text excerpt
Extract a public HTTP(S) web page into structured JSON with a clean text excerpt for LLM workflows: title, description, JSON-LD, Open Graph/Twitter metadata, headings, links, and AI-readiness signals. Fetches without JavaScript rendering, follows redirects, and applies a 12-second timeout and 3 MB read cap. The paid JSON keeps requestedUrl, finalUrl, source HTTP status, sourceOk, a nullable error, and capture limits; the excerpt is not the full page. Use /read for longer cleaned Markdown.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://agents.samedaydesk.com/extract
| Category | Code and developer |
|---|---|
| Provider host | agents.samedaydesk.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 14 from 11 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 1921 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"url": "https://example.com"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"url": {
"description": "Public http(s) URL to extract.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"aiReadiness": {
"type": "object"
},
"capture": {
"type": "object"
},
"description": {
"type": [
"string",
"null"
]
},
"error": {
"type": [
"object",
"null"
]
},
"finalUrl": {
"type": "string"
},
"headings": {
"type": "object"
},
"jsonLd": {
"type": "array"
},
"links": {
"type": "array"
},
"ok": {
"type": "boolean"
},
"openGraph": {
"type": "object"
},
"requestedUrl": {
"type": "string"
},
"sourceOk": {
"type": "boolean"
},
"status": {
"type": "integer"
},
"text": {
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"ok",
"url",
"title",
"status",
"sourceOk",
"requestedUrl",
"finalUrl"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}