Documentation

Getting Started
Learn how to use the HTML to Markdown converter

URL Conversion

Enter any URL to convert its content to clean Markdown. The converter uses smart extraction to identify the main content and generates high-quality Markdown.

HTML Conversion

Paste HTML directly to convert it to Markdown. Perfect for converting saved content or testing specific HTML snippets.

Batch Processing

Process up to 100 URLs simultaneously. Upload a CSV file with a "url" column or paste URLs directly (one per line). Downloads are available as a ZIP archive.

API Reference
Integrate with your applications

POST /api/jobs

{
  "mode": "url" | "html" | "batch",
  "url": "https://example.com",  // for url mode
  "html": "<html>...</html>",    // for html mode
  "urls": ["..."],               // for batch mode
  "options": {
    "readability": true,
    "stripTrackingParams": true,
    "emitLogs": true
  }
}

GET /api/jobs/:id/stream

Server-sent events stream for real-time conversion progress