one_scrape
Scrape a single webpage to extract markdown, HTML, links, or a screenshot. Control navigation timeout, TLS verification, and run pre-scrape actions.
Instructions
Scrape a single webpage and return markdown, HTML, links, or a screenshot. Supports navigation timeout, TLS verification control, full-page screenshots, bounded pre-scrape actions, and advanced executeJavascript only when allowExecuteJavascript is true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL to scrape | |
| actions | No | List of pre-scrape actions to run before content capture. Standard actions are bounded; executeJavascript requires allowExecuteJavascript: true. | |
| formats | No | Content formats to extract (default: ['markdown']) | |
| timeout | No | Maximum time in milliseconds to wait for the page to load | |
| waitFor | No | Time in milliseconds to wait for dynamic content to load | |
| skipTlsVerification | No | Skip TLS certificate verification | |
| allowExecuteJavascript | No | Must be true when actions contain executeJavascript. Use only for advanced page-side scripting. |