# Agent Newsstand Screenshot Endpoint

> Agent Newsstand Screenshot Endpoint is a paid API for AI agents from api.agentnewsstand.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Captures a full-page or viewport screenshot of any public URL and returns the image, payable per-call via USDC on Base.

## Facts

- Endpoint: GET https://api.agentnewsstand.com/v1/screenshot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-newsstand-screenshot-endpoint-f947d10c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FBv9-2okovZrlbGpmXozI

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 agent-newsstand-screenshot-endpoint-f947d10c
```

Example prompt: Can you take a screenshot of https://finance.yahoo.com/quote/AAPL and capture the full page so I can see what it looks like right now?

## When to prefer this

Choose this endpoint when you need a visual rendering of a webpage rather than raw HTML or text — for example, to verify layout, capture charts, confirm headlines, or audit a page's appearance. It requires no API key or signup and charges only $0.02 USDC per call via x402 on Base, making it ideal for lightweight, pay-per-use agent workflows. Prefer it over headless-browser services when you want a simple GET call with crypto micropayment settlement.

## Known failure modes

- Invalid or unreachable URL returns an error — the target page must be publicly accessible
- Paywalled or login-gated pages may render as login screens rather than content
- Very long or JavaScript-heavy pages may time out or render incompletely
- Payment failure via x402/USDC will prevent the request from being processed
- Malformed URL format will be rejected by schema validation

## How this service works

15 pay-per-call endpoints for AI agents: tokenized-asset candles, SEC filings, earnings, US macro, web search, page reader, paywall unlock, screenshots. USDC on Base via x402. No API keys, no signup.

## Output

A screenshot image of the rendered webpage at the provided URL, either viewport-only or full-page depending on the full_page parameter. The image captures the live visual state of the page at the time of the request.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Public URL to fetch"
      },
      "full_page": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-newsstand-screenshot-endpoint-f947d10c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentnewsstand.com](https://www.zero.xyz/host/api.agentnewsstand.com/llms.txt)
