# Vibes-Coded Screenshot API

> Vibes-Coded Screenshot API is a paid API for AI agents from vibes-coded.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Captures a full or partial PNG screenshot of any URL and returns it as a base64-encoded image via a pay-per-call HTTP 402/USDC endpoint.

## Facts

- Endpoint: POST https://vibes-coded.com/api/v1/outcomes/screenshot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibes-coded-screenshot-api-7f98220e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w8EMvRH1Y7zOKkHtm3oEK

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 vibes-coded-screenshot-api-7f98220e -d '<json body>'
```

Example prompt: Take a screenshot of https://example.com and give me the PNG image — just the above-the-fold view, not the full page.

## When to prefer this

Choose this endpoint when you need a real rendered PNG screenshot of a live URL and can pay $0.02 USDC per call via x402. It's well-suited for agents that need visual verification, archiving, or thumbnail generation without standing up their own headless browser infrastructure.

## Known failure modes

- Invalid or unreachable URL returns an error response
- Payment failure (HTTP 402 not resolved) blocks the call
- Timeout on slow-loading pages may return incomplete renders
- Malformed request body causes a 400-level error
- Private or login-gated pages may return a screenshot of a login wall rather than the intended content

## How this service works

Pay-per-call JSON for AI agents: skill search, listing optimization, install plans, productization, and artifact risk scoring. HTTP 402 → USDC. Full skill marketplace on-site.

## Output

A JSON object with ok (boolean), url (the requested URL), base64 (PNG image data as a base64 string), resource ('screenshot'), full_page (boolean indicating if full page was captured), base64_len (byte length of the base64 string), and content_type ('image/png').

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "url": "https://example.com",
  "base64": "<omitted in sample — paid response includes PNG base64>",
  "resource": "screenshot",
  "full_page": false,
  "base64_len": 48210,
  "content_type": "image/png"
 }
}
```

## More

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