Everything you need to integrate the Web-to-Markdown API.
All API requests require an x-api-key header. Get your key from the dashboard.
/api/v1/convertConvert a webpage URL to clean, structured Markdown.
{
"url": "https://example.com", // required
"include_links": true, // optional, default: true
"include_images": true // optional, default: true
}| Header | Required | Description |
|---|---|---|
| x-api-key | Required | Your API key |
| Content-Type | Required | application/json |
{
"success": true,
"data": {
"url": "https://example.com",
"markdown": "# Example Domain\n\nThis domain is for...",
"length": 1234,
"usage": {
"used": 24,
"limit": 50,
"plan": "free"
}
},
"meta": {
"response_time_ms": 342
}
}| Plan | Requests/min | Monthly calls | Price |
|---|---|---|---|
| Free | 10 | 50 | $0 |
| Pro | 60 | 10,000 | $9/mo |
| Enterprise | 200 | 100,000 | $49/mo |
$ curl -X POST https://wtmapi.com/api/v1/convert \
-H "Content-Type: application/json" \
-H "x-api-key: wtm_your_api_key_here" \
-d '{"url": "https://example.com"}'