API Reference

API Reference

md0.io exposes a simple API for programmatic access to its features.

Endpoint

https://api.md0.io/v1

Authentication

All requests require an API key passed in the Authorization header.

Authorization: Bearer YOUR_API_KEY

Convert Markdown to HTML

POST /convert

Body:

{
  "markdown": "# Hello"
}

Response:

{
  "html": "<h1>Hello</h1>"
}
API Reference | Markdown Zero