# klymax402 URL to PDF Converter

> klymax402 URL to PDF Converter is a paid API for AI agents from klymax402.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Converts any public webpage URL into a downloadable PDF document with configurable paper format

## Facts

- Endpoint: GET https://klymax402.com/api/screenshot-pdf/api/pdf
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-url-to-pdf-converter-0f2d6898
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YAx6KGcdA37hixIUDYavH

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 klymax402-url-to-pdf-converter-0f2d6898
```

Example prompt: Can you convert https://example.com/report to a PDF for me, using A4 paper format?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call URL-to-PDF conversion without managing your own headless browser infrastructure. It is ideal for agents that occasionally need to archive, share, or export web content as PDFs without setting up Puppeteer or similar tools. At $0.02/call it suits low-to-moderate volume use cases where simplicity and no API key management matter.

## Known failure modes

- Invalid or unreachable URL returns an error — ensure the URL is publicly accessible
- Unsupported paper format value (only A4, Letter, Legal, Tabloid accepted)
- Paywalled or login-protected pages may render blank or incomplete
- Very large or slow-loading pages may time out
- Missing required 'url' query parameter returns a validation error
- Payment failure if USDC balance on Base is insufficient

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON response containing the generated PDF file data (or a URL/base64-encoded content) for the rendered webpage, formatted according to the specified paper size (default A4).

## 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": "URL to convert to PDF (e.g. https://example.com)"
      },
      "format": {
       "enum": [
        "A4",
        "Letter",
        "Legal",
        "Tabloid"
       ],
       "type": "string",
       "description": "Paper format (default: A4)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-url-to-pdf-converter-0f2d6898/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
