Render URL to screenshot or PDF
renderRender a web page to a PNG/JPEG screenshot or a PDF using a real headless browser. Returns the image inline (base64) or the PDF as an embedded resource. Results are cached for 24h.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The absolute URL to render (must include https:// or http://). | |
| fresh | No | Bypass the 24h cache and force a fresh render. | |
| width | No | Viewport width in pixels. | |
| format | No | Output format. png/jpeg return an image; pdf returns a PDF document. | png |
| height | No | Viewport height in pixels. | |
| fullPage | No | For screenshots: capture the entire scrollable page instead of just the viewport. | |
| pdfFormat | No | Paper size, used only when format is pdf. | A4 |
| waitUntil | No | Navigation completion signal before capturing. | networkidle2 |