capture_screenshot_url
Capture web page screenshots in JPEG format for analysis or visualization. Supports full-page or single-screen captures and outputs in base64 or URL formats using Jina AI's APIs.
Instructions
Capture high-quality screenshots of web pages in base64 encoded JPEG format. Use this tool when you need to visually inspect a website, take a snapshot for analysis, or show users what a webpage looks like.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
firstScreenOnly | No | Set to true for a single screen capture (faster), false for full page capture including content below the fold | |
return_url | No | Set to true to return screenshot URLs instead of downloading images as base64 | |
url | Yes | The complete HTTP/HTTPS URL of the webpage to capture (e.g., 'https://example.com') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"firstScreenOnly": {
"default": false,
"description": "Set to true for a single screen capture (faster), false for full page capture including content below the fold",
"type": "boolean"
},
"return_url": {
"default": false,
"description": "Set to true to return screenshot URLs instead of downloading images as base64",
"type": "boolean"
},
"url": {
"description": "The complete HTTP/HTTPS URL of the webpage to capture (e.g., 'https://example.com')",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}