Extract clean readable text from caller-supplied HTML (no URL fetch)
Extract clean readable text from caller-supplied HTML (no URL fetch).
Answeringour last check, 2026-09-24
1 of 1checks answered this week
752 msmedian answer time
$0.011listed price per call
$0.011price 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://api.edifiedlab.com/v1/tools/extract-text
| Category | Search and research |
|---|---|
| Provider host | api.edifiedlab.com |
| 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.011 | 752 ms |
Example input (from the provider)
{
"body": {
"html": "<html><body><p>Quarterly revenue grew 12% year-over-year.</p></body></html>"
},
"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,
"anyOf": [
{
"required": [
"html"
]
},
{
"required": [
"html_b64"
]
},
{
"required": [
"content_b64"
]
}
],
"properties": {
"content_b64": {
"contentEncoding": "base64",
"description": "Alias of html_b64; decoded text must be at least 24 characters.",
"type": "string"
},
"html": {
"description": "Decoded HTML, minimum 24 characters. Tiny fragments such as <p>hello</p> are rejected unpaid (400) before a 402 challenge.",
"minLength": 24,
"type": "string"
},
"html_b64": {
"contentEncoding": "base64",
"description": "Base64-encoded UTF-8 HTML; decoded text must be at least 24 characters (same floor as html minLength).",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"action": {
"const": "extract",
"type": "string"
},
"input_bytes": {
"type": "integer"
},
"payload": {
"description": "Opaque internal registry id on the paid response. Discovery capability label is 'extract_text' (serviceName/tags); do not treat that label as this field.",
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"payload",
"action",
"text",
"input_bytes"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}