Converts messy web pages and raw HTML into clean, readable Markdown. One endpoint. No fuss.
Paste a URL and see the Markdown output.
Convert a URL to Markdown. Send JSON with a url field.
curl -X POST https://markify.thefocus.ai/tomarkdown \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'
Same conversion via query parameter.
curl "https://markify.thefocus.ai/tomarkdown?url=https://example.com"
Convert raw HTML directly. Send HTML as the request body.
curl -X POST https://markify.thefocus.ai/html2markdown \
-H "Content-Type: text/html" \
-d '<h1>Hello</h1><p>World</p>'