# api.x-402.online Screenshot

> api.x-402.online Screenshot is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Captures a PNG screenshot of any URL, with optional full-page rendering

## Facts

- Endpoint: GET https://api.x-402.online/v1/screenshot
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x-402-online-screenshot-1ad0416b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J05T-V8UE7KEwmyovp3k3

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 api-x-402-online-screenshot-1ad0416b
```

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

## When to prefer this

Use this endpoint when you need a quick, pay-per-use PNG screenshot of any URL without setting up your own headless browser infrastructure. Ideal for one-off visual captures, previews, or archiving web pages as images at $0.01 USDC per call.

## Known failure modes

- URL is unreachable or returns an error — screenshot may be blank or fail
- Invalid or malformed URL — API returns an error response
- Page takes too long to load — timeout error
- Payment not processed — 402 payment required error
- Full-page rendering fails for very long pages

## How this service works

URL -> PNG screenshot. Input: {url, fullPage?}

## Output

A PNG image file representing the rendered visual state of the requested URL, either as a viewport crop or a full-page capture depending on the fullPage parameter.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x-402-online-screenshot-1ad0416b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x-402.online](https://www.zero.xyz/host/api.x-402.online/llms.txt)
