Render
screenshot_url
Capture a screenshot image of a public web page or an inline HTML snippet, rendered in a real headless browser (JS, CSS, and web fonts execute). Returns a PNG/JPEG/WEBP image. Use this to visually preview a page, generate a thumbnail, or archive how a URL looked at a point in time.
Remote vlantukh/skillforge99
Remote (network-hosted)
Other tools also called screenshot_url?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Public http(s) URL to screenshot (exactly one of url/html)"
},
"html": {
"type": "string",
"description": "Raw HTML to render (exactly one of url/html, max 1MB)"
},
"width": {
"type": "number",
"description": "Viewport width in pixels, 320-1920 (default 1280)"
},
"format": {
"enum": [
"png",
"jpeg",
"webp"
],
"type": "string",
"description": "Output image format (default png)"
},
"height": {
"type": "number",
"description": "Viewport height in pixels, 240-1080 (default 800)"
},
"fullPage": {
"type": "boolean",
"description": "Capture the full scrollable page instead of just the viewport (costs 2 units instead of 1)"
}
}
}