Browser Markdown
$0.005per callbrowser.markdownExtract readable content from a webpage as Markdown
Endpoint
POST /v1/tools/browser.markdown/tasksInput
| Field | Type | Required | Description |
|---|---|---|---|
| url | string | yes | URL to extract from |
| wait | string | no |
Output
| Field | Type | Description |
|---|---|---|
| markdown | string | |
| title | string | |
| bytes | integer |
Example
Request
{
"url": "https://example.com"
}Response
{
"markdown": "# Example Domain\n\nThis domain is...",
"title": "Example Domain",
"bytes": 456
}