# TariffMonkee PDF Screenshot Renderer

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

Fetches a URL using a real JavaScript-rendering browser and returns the full page as a PDF file, with 24-hour caching.

## Facts

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

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-pdf-screenshot-renderer-115e940c
```

Example prompt: Can you grab the page at https://example.com/report and give me a PDF of the fully rendered version, including all the JavaScript-loaded content?

## When to prefer this

Choose this endpoint when you need a pixel-faithful, fully JavaScript-rendered PDF of a web page — particularly for pages that rely on client-side rendering (SPAs, dynamic dashboards, JavaScript-injected content). The 24-hour caching makes it efficient for repeated access to the same URL. Prefer this over screenshot endpoints when a vector/text-based PDF document format is required rather than a raster image.

## Known failure modes

- URL is unreachable or returns an error — PDF cannot be generated
- JavaScript on the target page causes a rendering timeout
- URL content has changed but cached version is returned (up to 24h stale)
- Malformed or missing URL parameter causes request failure
- Payment not settled via x402 — endpoint returns 402 Payment Required

## How this service works

Fetch a URL with a real rendered browser (JavaScript executed) and return a PDF of the full page. Not JSON -- the response body is the file 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

The raw binary PDF file as the response body (not JSON). Response headers include X-Cached (whether the result was served from cache) and X-Fetched-At (timestamp of when the page was originally fetched). Results are cached per URL for 24 hours.

## 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-pdf-screenshot-renderer-115e940c/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)
