# Santos Website Screenshot API

> Santos Website Screenshot API is a paid API for AI agents from api.santosautomation.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Renders a screenshot of any public webpage as PNG, JPEG, or PDF, returning raw binary image bytes.

## Facts

- Endpoint: HEAD https://api.santosautomation.com/v1/screenshot
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/santos-website-screenshot-api-bb112e99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_enKioiClrxQFNcDElxAS9

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 santos-website-screenshot-api-bb112e99 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need a visual capture of a live webpage as a binary image or PDF. Prefer it over HTML-scraping endpoints when the output must be a rendered visual (e.g. for thumbnails, audits, archiving, or PDF generation). Choose PNG for lossless quality, JPEG for smaller file size, or PDF for document-style output.

## Known failure modes

- URL is not publicly accessible or returns a non-2xx status — render may fail or return a blank image
- Invalid or malformed URL provided — likely 4xx error
- Unsupported format requested — validation error on the format enum
- Target page has heavy JavaScript or long load times — may result in incomplete render
- Private/intranet URLs that the renderer cannot reach — connection timeout

## How this service works

Audit any website for AI Agent Readiness, MCP, llms.txt, OpenAPI, SEO, accessibility and security. Structured JSON with evidence and prioritized fixes.

## Output

Returns binary bytes of the rendered page as image/png, image/jpeg, or application/pdf depending on the requested format, along with an X-Render-Job header identifying the render job.

## 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 or HTTPS page to render."
      },
      "device": {
       "enum": [
        "desktop",
        "mobile"
       ],
       "type": "string"
      },
      "format": {
       "enum": [
        "png",
        "jpeg",
        "pdf"
       ],
       "type": "string"
      },
      "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": {
  "note": "Binary response: image/png, image/jpeg, or application/pdf bytes with an X-Render-Job header."
 }
}
```

## More

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