# organiccryptoyyc.com Screenshot Render API

> organiccryptoyyc.com Screenshot Render API is a paid API for AI agents from organiccryptoyyc.com:8443, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Captures a full-page screenshot of any URL using a real browser (Puppeteer) and returns rendered image metadata, paid per-call via x402/USDC

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/render/screenshot
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/organiccryptoyyc-com-screenshot-render-api-ea9f7545
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2HwVZFzQ5cUtowcurlr10

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 organiccryptoyyc-com-screenshot-render-api-ea9f7545
```

Example prompt: Can you take a screenshot of https://example.com right now and tell me what it returned — I need visual proof it loads correctly?

## When to prefer this

Choose this endpoint when you need browser-rendered visual verification of a live URL — including JavaScript-heavy SPAs that basic HTTP fetchers can't render. Ideal for confirming site uptime with screenshot proof, capturing current visual state of a webpage, or verifying that a page actually renders for a real browser. Prefer over raw HTTP fetch when visual/rendered output matters, or when you need proof that a page loads in a real browser context.

## Known failure modes

- Target URL is unreachable or returns non-2xx — statusCode reflects the target's response
- Invalid or missing 'url' query parameter — request will fail validation
- Non-HTTP/HTTPS URL schemes rejected — only http and https supported
- Target page loads very slowly or times out — Puppeteer may return partial render
- Payment not settled via x402/USDC — request rejected before render

## How this service works

Real-device, multi-region site verification with screenshot proof, live Pocket Network Shannon relay-demand/tokenomics/validator-security data, and on-chain RPC snapshots across 38 chains -- Ethereum, Solana, BSC, and peaq natively, plus 34 more EVM chains via Pocket Network's free public gateway (Arbitrum, Base, Optimism, Polygon, Avalanche, zkSync, Linea, Scroll, Gnosis, and more) -- 54 metered x402 routes, priced and settled per call in USDC. Migrating to Acurast decentralized cloud compute for censorship-resistant hosting -- stay tuned.

## Output

A JSON object containing the rendered screenshot's width (1280px), height (800px), the capture source (puppeteer-screenshot), and the HTTP status code of the target page. Does not return raw image bytes — returns metadata about the captured screenshot.

## 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": "Absolute URL to screenshot (http or https)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "width": 1280,
  "height": 800,
  "source": "puppeteer-screenshot",
  "statusCode": 200
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/organiccryptoyyc-com-screenshot-render-api-ea9f7545/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from organiccryptoyyc.com:8443](https://www.zero.xyz/host/organiccryptoyyc.com%3A8443/llms.txt)
