API Service

Markify

Converts messy web pages and raw HTML into clean, readable Markdown. One endpoint. No fuss.

<h1 class="title">Hello</h1> <p>Visit <a href="https://example.com"> our site</a> for more.</p> <ul> <li>Fast</li> <li>Simple</li> </ul>
# Hello Visit [our site](https://example.com) for more. - Fast - Simple

Try it

Paste a URL and see the Markdown output.


                    

API Reference

POST /tomarkdown

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"}'
GET /tomarkdown?url=...

Same conversion via query parameter.

curl "https://markify.thefocus.ai/tomarkdown?url=https://example.com"
POST /html2markdown

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>'