Browser Content
$0.005per callbrowser.contentGet fully rendered HTML content (JavaScript executed)
Endpoint
POST /v1/tools/browser.content/tasksInput
| Field | Type | Required | Description |
|---|---|---|---|
| url | string | yes | URL to render |
| wait | string | no |
Output
| Field | Type | Description |
|---|---|---|
| html | string | |
| title | string | |
| bytes | integer |
Example
Request
{
"url": "https://example.com",
"wait": "idle"
}Response
{
"html": "<!DOCTYPE html>...",
"title": "Example Domain",
"bytes": 12345
}