Convert a web page (by URL) or raw HTML into clean, readable Markdown plus struc
Convert a web page (by URL) or raw HTML into clean, readable Markdown plus structured metadata (title, description, Open Graph tags, canonical URL, language). Strips scripts, styles and boilerplate tags; preserves headings, links, images, lists, code blocks and tables. Built for agents that need web content as LLM-ready text. POST a JSON body like: {"url":"https://example.com/article"}
Answeringour last check, 2026-09-24
1 of 1checks answered this week
37 msmedian answer time
$0.005listed price per call
$0.005price 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://keyronne.com/api/markdown
| Category | Image and media |
|---|---|
| Provider host | keyronne.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 2 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 | 37 ms |
Example input (from the provider)
{
"body": {
"url": "https://example.com/article"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"html": {
"description": "Raw HTML to convert. Provide either url or html.",
"type": "string"
},
"url": {
"description": "Public http(s) URL to fetch and convert (max 2 MB, private networks blocked). Provide either url or html.",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"type": "object"
},
"output": {
"properties": {
"markdown": {
"type": "string"
},
"metadata": {
"properties": {
"canonical": {
"type": "string"
},
"description": {
"type": "string"
},
"lang": {
"type": "string"
},
"og": {
"type": "object"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"source": {
"description": "Final URL after redirects, or \"inline\".",
"type": "string"
},
"truncated": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}