# klymax402 Text Translator API

> klymax402 Text Translator API 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).

Translates text from one language to another, with optional auto-detection of the source language, supporting up to 5000 characters per call.

## Facts

- Endpoint: GET https://klymax402.com/api/text-translator/api/translate
- 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-text-translator-api-125ce6bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7aODIuixQl_-JoX-31aKv

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-text-translator-api-125ce6bc
```

Example prompt: Can you translate this paragraph into French: 'The quick brown fox jumps over the lazy dog. It was a bright and sunny afternoon in the park.'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call text translation without managing API keys or subscriptions. It is well-suited for AI agents that occasionally need multilingual output, customer-facing localization tasks, or translating short to medium-length content (up to 5000 characters) across common languages. Prefer it when your workflow already uses x402/USDC micropayments on Base and you want a single aggregated API surface.

## Known failure modes

- Unsupported language code returns an error or empty response
- Text exceeding 5000 characters may be truncated or rejected
- Invalid or missing 'text' parameter causes a bad request error
- Ambiguous or very short input may lead to incorrect language auto-detection
- Network or payment failure (x402) returns a 402 Payment Required status

## 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 translated text in the target language. If 'auto' is specified as the source language, the API detects the source language and translates accordingly. The response includes the translated string for up to 5000 input characters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "description": "Target language code (e.g. 'en', 'fr', 'de', 'es', 'it', 'pt', 'zh', 'ja', 'ko', 'ar'). Default: 'en'"
  },
  "from": {
   "type": "string",
   "description": "Source language code (e.g. 'en', 'fr', 'de') or 'auto' for detection. Default: 'auto'"
  },
  "text": {
   "type": "string",
   "description": "The text to translate (max 5000 characters)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-text-translator-api-125ce6bc/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)
