# x402-farm Screenshot API

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

Takes a screenshot of a webpage via a pay-per-call GET request using the x402 protocol with USDC on Base

## Facts

- Endpoint: GET https://x402-farm.vercel.app/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/x402-farm-screenshot-api-645d9a00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fdp4GdtWzWFzKzY7fpvl4

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 x402-farm-screenshot-api-645d9a00
```

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

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call screenshot capability with no account setup, billed in USDC on Base via the x402 protocol. Ideal for AI agents that need on-demand visual captures of web pages without maintaining a browser automation infrastructure or subscription.

## Known failure modes

- Invalid or unreachable URL returns an error
- Payment failure if wallet lacks sufficient USDC on Base
- Timeout if target page loads slowly
- Pages requiring authentication may return login screens instead of content
- CORS or bot-protection measures on target site may yield incomplete renders

## How this service works

Pay-per-call APIs for AI agents — x402 protocol, USDC on Base, no account needed.

## Output

Returns a screenshot image of the requested webpage, showing the rendered visual appearance of the page at the time of the request. Billed at $0.01 USDC per call via the x402 protocol on Base.

## 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/x402-farm-screenshot-api-645d9a00/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-farm.vercel.app](https://www.zero.xyz/host/x402-farm.vercel.app/llms.txt)
