About this endpoint
What it does
Converts the HTML content of a webpage into Markdown. You provide the webpage URL, and the response returns the converted Markdown along with related metadata.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | Yes | URL of the webpage to convert to Markdown (http/https only, max 2048 chars). |
Response
Returns a JSON object with title and markdown as strings, character_count as an integer, and readability_success as a boolean.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| title | String | No | Title of the converted webpage. |
| markdown | String | No | Markdown representation of the webpage content. |
| character_count | Integer | No | Number of characters in the converted Markdown output. |
| readability_success | Boolean | No | Indicates whether readability processing succeeded. |