# TariffMonkee Screenshot

> TariffMonkee Screenshot is a paid API for AI agents from tariffmonkee.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches a URL using a real headless browser with JavaScript execution and returns a full-page PNG screenshot as raw image bytes

## Facts

- Endpoint: GET https://tariffmonkee.com/paid/screenshot
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tariffmonkee-screenshot-5d5c443e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TkKeKlp5ifCvPe310crhD

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 tariffmonkee-screenshot-5d5c443e
```

Example prompt: Can you take a full-page screenshot of https://example.com and send me the PNG image of what it looks like right now?

## When to prefer this

Choose this endpoint when you need a visual, pixel-accurate representation of a webpage, especially those that rely on JavaScript to render content. It is ideal over text/markdown extractors when layout, styling, or visual design information is important, or when you need to verify what a page actually looks like to a human visitor. Prefer this over PDF conversion when PNG format is required for image processing, embedding, or visual inspection tasks.

## Known failure modes

- URL is unreachable or returns an error — screenshot may show an error page or fail entirely
- JavaScript-heavy page times out before fully rendering — screenshot captured mid-load
- Cached result is stale if page changed within the 24-hour cache window
- Invalid or malformed URL provided — request fails
- Anti-bot protections on target site may block headless browser rendering

## How this service works

Fetch a URL with a real rendered browser (JavaScript executed) and return a PNG screenshot of the full page. Not JSON -- the response body is the image itself. Results are cached for 24 hours per URL. Cache status and fetch time are reported in the X-Cached and X-Fetched-At response headers.

## Output

Raw PNG image bytes representing the full rendered page (not JSON). Response headers include X-Cached (cache hit/miss) and X-Fetched-At (timestamp of when the page was fetched). Results are cached for 24 hours per unique URL, so repeated calls within that window return the cached screenshot.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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