rendered_html
Fetch a page's HTML after JavaScript has executed. Use this when a plain HTTP fetch returns an empty shell or a loading spinner — single-page apps, sites that build their content client-side, or anything behind a framework. Returns the final DOM as HTML text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The absolute URL to load, including https:// | |
| wait_for | No | Optional CSS selector to wait for before capturing, for pages that load content late. | |
| max_chars | No | Truncate the returned HTML to this many characters. Defaults to 100000. |