# klymax402 OCR Extract

> klymax402 OCR Extract is a paid API for AI agents from klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Extracts text from images using OCR, accepting either an image URL or base64-encoded image data with an optional language hint.

## Facts

- Endpoint: GET https://klymax402.com/api/ocr-extract/api/ocr
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-ocr-extract-cab1e5af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JCznoJqjusM267cIFBtRv

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-ocr-extract-cab1e5af
```

Example prompt: Can you pull out all the text from this image URL https://example.com/receipt.jpg? Use English as the language hint.

## When to prefer this

Choose this endpoint when you need to extract text from an image (URL or base64) with optional language tuning, especially in a pay-per-call agent workflow using USDC on Base. Useful when you don't want to manage API keys or run your own OCR infrastructure, and need a lightweight, on-demand OCR call for single images.

## Known failure modes

- Image URL is unreachable or returns a non-image response
- Base64 data is malformed or corrupted, causing decoding failure
- Unsupported image format results in extraction failure
- Low-quality or blurry images produce inaccurate or incomplete text
- Wrong language hint reduces recognition accuracy for non-Latin scripts
- Payment not fulfilled results in HTTP 402 error

## 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 the text content extracted from the provided image, recognized according to the specified language (defaulting to English). The output is the raw OCR-recognized text from the image.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "language": {
   "type": "string",
   "description": "Language hint for OCR: eng, fra, deu, spa, etc. (default: eng)"
  },
  "image_url": {
   "type": "string",
   "description": "URL of the image to extract text from"
  },
  "image_base64": {
   "type": "string",
   "description": "Base64-encoded image data (alternative to image_url)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-ocr-extract-cab1e5af/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)
