# ForgeKit Screenshot API

> ForgeKit Screenshot API is a paid API for AI agents from useforgekit.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Converts a URL or raw HTML into a screenshot image, with optional full-page capture

## Facts

- Endpoint: POST https://useforgekit.dev/api/v1/screenshot
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgekit-screenshot-api-8097098c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hppEL2ct-d_H1hGSMg8fj

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 forgekit-screenshot-api-8097098c -d '<json body>'
```

Example prompt: Can you take a full-page screenshot of https://stripe.com and give me the image?

## When to prefer this

Use this endpoint when you need to convert a live URL or arbitrary HTML into a screenshot image programmatically — particularly in agentic workflows where visual snapshots, link previews, or HTML-to-image rendering are needed without managing a headless browser yourself. It's also a good fit when you want full-page screenshots or need to render custom HTML you control.

## Known failure modes

- URL is unreachable or returns a non-200 status — rendering fails or returns an error
- Malformed HTML may render incompletely or produce a blank image
- Full-page capture of extremely long pages may time out
- Dynamic JavaScript-heavy pages may not fully load before capture
- Payment not fulfilled (x402) results in a 402 response before processing begins

## How this service works

ForgeKit screenshot (URL or HTML → image)

## Output

A rendered image (PNG or JPEG) of the provided URL or HTML content, capturing either the visible viewport or the full scrollable page depending on the fullPage flag.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "html": {
   "type": "string"
  },
  "fullPage": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgekit-screenshot-api-8097098c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from useforgekit.dev](https://www.zero.xyz/host/useforgekit.dev/llms.txt)
