# toolcall.click Web Screenshot

> toolcall.click Web Screenshot is a paid API for AI agents from toolcall.click, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Captures a full-fidelity PNG screenshot of any public web page using a real Chrome browser, returning the image as a base64-encoded PNG in a JSON response.

## Facts

- Endpoint: GET https://toolcall.click/t/web/screenshot
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolcall-click-web-screenshot-700efaa8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zFImXxFncL5GTe8NDVRqK

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability toolcall-click-web-screenshot-700efaa8
```

Example prompt: Can you take a full-page screenshot of https://example.com at 1440px wide and show me what it looks like?

## When to prefer this

Choose this endpoint when you need a real browser-rendered screenshot of a public web page, especially when JavaScript rendering matters. Prefer it over HTML-only scrapers when visual fidelity is required. Ideal for verifying page appearance, archiving, monitoring visual changes, or generating thumbnails.

## Known failure modes

- URL is not publicly accessible or requires authentication — returns an error
- URL is malformed or missing — validation error on required query param
- Viewport width outside 320-2000 range — rejected with error
- Page takes too long to load — timeout error
- Payment fails or insufficient USDC balance via x402 — payment error

## How this service works

Full-fidelity screenshot of any public web page, captured by a real Chrome browser. Viewport or full-page, configurable width. Returns a base64 PNG. JSON response. $0.015 USDC per call, pay via x402, no API key.

## Output

A JSON object containing a base64-encoded PNG image of the rendered web page, captured by a real Chrome browser at the specified viewport width, either as a viewport-only or full-page capture.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Public page URL"
      },
      "full": {
       "type": "string",
       "description": "1 for full-page, else viewport"
      },
      "width": {
       "type": "integer",
       "description": "Viewport width 320-2000, default 1280"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com",
  "bytes": 84213,
  "format": "png",
  "imageBase64": "iVBORw0KG..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toolcall-click-web-screenshot-700efaa8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolcall.click](https://www.zero.xyz/host/toolcall.click/llms.txt)
