Request
POST /v1/convert
Authorization: Bearer <api_key>
Content-Type: application/json
{
"url": "https://example.com/blog/post"
} Extract clean Markdown from any URL. A single endpoint with a predictable response schema, built for automation.
POST /v1/convert
Authorization: Bearer <api_key>
Content-Type: application/json
{
"url": "https://example.com/blog/post"
} {
"status": "success",
"data": {
"content": "# Example Post\n\nClean markdown content..."
}
}