# Pagesnap Screenshot API

> Pagesnap Screenshot API is a paid API for AI agents from pagesnap.142-93-197-141.sslip.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Captures a screenshot of any public URL and returns it as a binary image in PNG, JPEG, or WebP format

## Facts

- Endpoint: GET https://pagesnap.142-93-197-141.sslip.io/x402/v1/screenshot
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pagesnap-screenshot-api-2faec6fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VXeMBxBD1VRuPjDLVzOo-

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 pagesnap-screenshot-api-2faec6fd
```

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

## When to prefer this

Use this endpoint when you need a visual image of a webpage — for thumbnails, previews, archiving, or monitoring visual changes. Prefer this over the Markdown or PDF siblings when the output must be a raster image. Ideal for agents that need to show users what a site looks like or compare visual states over time.

## Known failure modes

- Invalid or non-public URL returns an error
- Timeout if the target page takes longer than allowed wait time to load
- Unsupported image format enum value rejected at input validation
- Width or height outside allowed range (200–3840 / 200–10000) rejected
- Payment of 0.005 USDC required per call via x402 protocol — missing payment returns 402
- Target URL behind authentication or firewall may render blank or partial page

## How this service works

Turn any public URL into clean Markdown, a screenshot, a PDF or metadata with one API. Free tier, no signup and a remote MCP server for AI agents.

## Output

Returns raw binary image data (PNG, JPEG, or WebP) of the rendered webpage at the requested dimensions. The response includes a Content-Type header indicating the image format. The image reflects the fully rendered page, optionally waiting for JavaScript-heavy content to settle.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Public HTTP(S) URL"
      },
      "wait": {
       "type": "integer",
       "maximum": 10000,
       "minimum": 0
      },
      "width": {
       "type": "integer",
       "maximum": 3840,
       "minimum": 200
      },
      "format": {
       "enum": [
        "png",
        "jpeg",
        "webp"
       ],
       "type": "string"
      },
      "height": {
       "type": "integer",
       "maximum": 10000,
       "minimum": 200
      },
      "full_page": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "contentType",
      "encoding"
     ],
     "properties": {
      "encoding": {
       "type": "string",
       "const": "binary"
      },
      "contentType": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "encoding": "binary",
  "contentType": "image/png"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagesnap-screenshot-api-2faec6fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pagesnap.142-93-197-141.sslip.io](https://www.zero.xyz/host/pagesnap.142-93-197-141.sslip.io/llms.txt)
