# PayWeave Browserbase Screenshot

> PayWeave Browserbase Screenshot is a paid API for AI agents from browserbase.payweave.services, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Captures a full-page PNG screenshot of any URL using a headless browser session with optional stealth, ad blocking, and CAPTCHA solving

## Facts

- Endpoint: POST https://browserbase.payweave.services/screenshot
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-browserbase-screenshot-88b78198
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VGkfJoqkCmzJZeGGzygNL

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 payweave-browserbase-screenshot-88b78198 -d '<json body>'
```

Example prompt: Take a stealth screenshot of https://example.com with a 1280x800 viewport, block ads, and solve any CAPTCHAs — I need a PNG of what the page looks like.

## When to prefer this

Choose this endpoint when you need a rendered visual snapshot of a webpage — especially for JavaScript-heavy or bot-protected pages — and want built-in stealth, ad blocking, and CAPTCHA solving as options. Prefer it over raw HTTP fetchers when the page requires a real browser to render correctly.

## Known failure modes

- Target URL is unreachable or returns an error — ok will be false or request may time out
- CAPTCHA not solvable — capture may fail or return incomplete page if solveCaptchas is false
- Timeout exceeded — page did not fully load within the specified timeout
- Invalid URL format — request rejected with validation error
- Region or viewport configuration unsupported — may return error or default fallback

## How this service works

Headless browser sessions for agentic web automation.

## Output

Returns a JSON object with ok=true, the captured URL, a base64-encoded PNG image of the page, MIME type 'image/png', and the Browserbase session ID used for the capture.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string"
  },
  "region": {
   "enum": [
    "us-west-2",
    "us-east-1",
    "eu-central-1",
    "ap-southeast-1"
   ],
   "type": "string"
  },
  "stealth": {
   "type": "boolean"
  },
  "timeout": {
   "type": "integer"
  },
  "blockAds": {
   "type": "boolean"
  },
  "viewport": {
   "type": "object"
  },
  "solveCaptchas": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ok",
  "sessionId",
  "url",
  "data",
  "mimeType"
 ],
 "properties": {
  "ok": {
   "type": "boolean",
   "const": true
  },
  "url": {
   "type": "string",
   "format": "uri",
   "description": "The URL that was captured"
  },
  "data": {
   "type": "string",
   "description": "Base64-encoded PNG screenshot bytes"
  },
  "mimeType": {
   "type": "string",
   "const": "image/png",
   "description": "MIME type of the screenshot data"
  },
  "sessionId": {
   "type": "string",
   "description": "Browserbase session id used for this capture"
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-browserbase-screenshot-88b78198/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from browserbase.payweave.services](https://www.zero.xyz/host/browserbase.payweave.services/llms.txt)
