# snapbrief Screenshot API

> snapbrief Screenshot API is a paid API for AI agents from 89.106.83.95.sslip.io:8445, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Renders a PNG screenshot of any public web page, billed at $0.02 USDC per call via x402 on Base with no account required

## Facts

- Endpoint: GET https://89.106.83.95.sslip.io:8445/shot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/snapbrief-screenshot-api-043078cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fAvooVHFMBn4SkeP1TswW

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 snapbrief-screenshot-api-043078cf
```

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

## When to prefer this

Choose snapbrief when you need a quick, no-account-required PNG screenshot of a public web page and are comfortable paying micro-amounts in USDC on Base via x402. Ideal for agents that need visual captures without setting up OAuth or managing API keys, and where $0.02 per call fits the budget.

## Known failure modes

- Invalid or unreachable URL returns an error or blank image
- Payment failure or insufficient USDC balance blocks the request
- Private or locally-hosted URLs cannot be rendered
- SSL/TLS errors on the target page may cause rendering failures
- Timeout if the target page is slow to load
- Incorrect width parameter type (non-integer) causes a validation error

## How this service works

Rendered PNG screenshots of any public web page. No accounts — pay $0.02 per call in USDC on Base via x402.

## Output

Returns raw PNG image bytes representing the rendered screenshot of the requested web page; the response includes an 'image' field containing the PNG binary data.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string"
      },
      "width": {
       "type": "integer"
      },
      "full_page": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "image": "<png bytes>"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/snapbrief-screenshot-api-043078cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 89.106.83.95.sslip.io:8445](https://www.zero.xyz/host/89.106.83.95.sslip.io%3A8445/llms.txt)
