# WebberSites Website Screenshot API

> WebberSites Website Screenshot API is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Renders any public URL in a real browser and returns a PNG or JPEG screenshot as base64 JSON or raw image bytes

## Facts

- Endpoint: GET https://api.webbersites.com/api/website-screenshot
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webbersites-website-screenshot-api-ff8813f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Edv4eJl70TKddNn1J89rZ

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 webbersites-website-screenshot-api-ff8813f9
```

Example prompt: Can you take a full-page screenshot of https://stripe.com at 1280px wide and give me the image as a PNG?

## When to prefer this

Use this endpoint when an AI agent needs to visually inspect, archive, or QA a public web page — particularly when text extraction is insufficient and the visual layout or rendered appearance matters. Prefer it over HTML-scraping approaches when you need pixel-level fidelity, rendered JavaScript, or design reference. The automatic ad and cookie banner blocking makes it especially useful for clean previews and archiving.

## Known failure modes

- URL is not publicly accessible or returns an error (404, 500, etc.) — screenshot may fail or capture an error page
- Non-HTTP/HTTPS URLs are rejected — must be a valid public http(s) URL
- Extremely long pages with full_page=1 may time out or produce very large files
- Width outside 320–1920 range may be rejected or clamped
- Paywalled or login-required pages render only the login/gate, not the content
- Very slow-loading pages may time out before rendering completes

## How this service works

WEBSITE SCREENSHOT — render any public URL in a real browser and get the pixels. GET ?url=… returns a PNG as base64 JSON (add &raw=1 for the image bytes directly). Options: width 320-1920 (default 1280), height, full_page=1 for the whole scrolled page, format=png|jpeg. Ads and cookie banners are blocked automatically. For agents that need to SEE a page: visual QA, previews, archiving, design reference.

## Output

A JSON object containing a base64-encoded PNG or JPEG screenshot of the rendered page, along with metadata: the captured URL, image dimensions (width, height), format, byte size, content type, and whether the full scrolled page was captured. If raw=1 is passed, raw image bytes are returned directly instead of JSON.

## 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": {
      "raw": {
       "type": "number",
       "description": "1 = respond with raw image bytes instead of JSON"
      },
      "url": {
       "type": "string",
       "description": "Public http(s) URL of the page to capture"
      },
      "width": {
       "type": "number",
       "description": "viewport width in px (320-1920, default 1280)"
      },
      "format": {
       "type": "string",
       "description": "png (default) or jpeg"
      },
      "height": {
       "type": "number",
       "description": "viewport height in px (320-2160, default 800)"
      },
      "full_page": {
       "type": "number",
       "description": "1 = capture the entire scrolled page, not just the viewport"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      },
      "bytes": {
       "type": "number"
      },
      "width": {
       "type": "number"
      },
      "format": {
       "type": "string"
      },
      "height": {
       "type": "number"
      },
      "full_page": {
       "type": "boolean"
      },
      "content_type": {
       "type": "string"
      },
      "image_base64": {
       "type": "string",
       "description": "the screenshot, base64-encoded"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com",
  "bytes": 184320,
  "width": 1280,
  "format": "png",
  "height": 800,
  "full_page": false,
  "content_type": "image/png",
  "image_base64": "iVBORw0…"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webbersites-website-screenshot-api-ff8813f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.webbersites.com](https://www.zero.xyz/host/api.webbersites.com/llms.txt)
