Extract the main readable plaintext of a public HTML page
Extract the main readable plaintext of a public HTML page: final url, title, text (capped), wordCount, language, and fetchedAt. POST JSON {"url":"https://example.com","maxChars":12000}. Optional maxChars is an integer 1–12000 (default 12000). Public http(s) only; private hosts blocked. $0.05 USDC on Base (eip155:8453). No API key.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
248 msmedian answer time
$0.05listed price per call
$0.05price it asked us
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
POST https://scrooge-x402-tool-mill.vercel.app/v1/readable-text
| Category | Search and research |
|---|---|
| Provider host | scrooge-x402-tool-mill.vercel.app |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 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.05 | 248 ms |
Example input (from the provider)
{
"body": {
"maxChars": 12000,
"url": "https://example.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"maxChars": {
"description": "Max characters of extracted text (default and cap 12000)",
"maximum": 12000,
"minimum": 1,
"type": "integer"
},
"url": {
"description": "Public http(s) URL to fetch (SSRF-safe; private/link-local blocked)",
"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": {
"additionalProperties": false,
"properties": {
"fetchedAt": {
"description": "ISO-8601 time the page was fetched",
"format": "date-time",
"type": "string"
},
"language": {
"description": "html lang or content-language, or null",
"type": [
"string",
"null"
]
},
"text": {
"description": "Main readable plaintext, capped by maxChars (default and max 12000)",
"type": "string"
},
"title": {
"description": "HTML title, or null",
"type": [
"string",
"null"
]
},
"url": {
"description": "Final URL after redirects",
"format": "uri",
"type": "string"
},
"wordCount": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"url",
"title",
"text",
"wordCount",
"language",
"fetchedAt"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}