# AI Rook Screenshot API

> AI Rook Screenshot API is a paid API for AI agents from agents.ai-rook.com, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-13).

Captures a full-page screenshot of any URL and returns it as a base64-encoded PNG image

## Facts

- Endpoint: GET https://agents.ai-rook.com/api/screenshot
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-rook-screenshot-api-b8728f6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nHUv9hLKgmppAwqlNbDIx

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 ai-rook-screenshot-api-b8728f6f
```

Example prompt: Can you take a screenshot of https://example.com and show me what it looks like right now?

## When to prefer this

Use this endpoint when you need a pay-per-call, no-signup screenshot service that settles via USDC on Base mainnet (x402 protocol) at $0.05/call. Ideal for AI agents that need visual snapshots of web pages without managing browser infrastructure or API keys, especially in autonomous agent pipelines that already use x402 micropayments.

## Known failure modes

- Invalid or unreachable URL returns error
- Payment not included or insufficient USDC results in 402 response
- Timeout if the target page loads slowly
- Private or localhost URLs may be inaccessible
- Page requiring authentication may render login screen instead of content

## How this service works

Live crypto trading intelligence for AI agents — real-time BTC signals, CVD, order flow, and active strategy setups, no API keys or signup. 43 pay-per-call endpoints total: trading data, AI inference (MiniMax M2.7 (456B-parameter Mixture-of-Experts)), web utilities, verification, and ERC-8183 ACP escrow with on-chain ERC-8004 reputation attestation (Agent ID 59646). Four payment rails: USDC on Base mainnet (default), USDC on Solana mainnet, HBAR/USDC on Hedera testnet, USDT on BNB Chain testnet. One free trial call per endpoint. Prices from $0.001/call.

## Output

A JSON object containing the original URL, a base64-encoded PNG image (as a data URI with prefix 'data:image/png;base64,...'), and the rendered image dimensions (width: 1280px, height: 2048px).

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET"
     ]
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://agents.ai-rook.com",
  "image": "data:image/png;base64,...",
  "width": 1280,
  "height": 2048
 }
}
```

## More

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