# Clink Lithium Vault Text Translation API

> Clink Lithium Vault Text Translation API is a paid API for AI agents from clink-lithium-vault.fly.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Translates text (up to 5,000 characters) into any target language, returning detected source language and full translation as structured JSON for $0.01 USDC per call.

## Facts

- Endpoint: POST https://clink-lithium-vault.fly.dev/translate/text
- 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/clink-lithium-vault-text-translation-api-91506673
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HLae7JjV7DbEfvmJ9oT8o

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 clink-lithium-vault-text-translation-api-91506673 -d '<json body>'
```

Example prompt: Can you translate this customer message into Japanese: 'Thank you for your order, it will arrive in 3-5 business days. Please contact us if you have any questions.'

## When to prefer this

Choose this endpoint when you need a no-account, pay-per-call translation API that returns clean machine-readable JSON (source language + translation) for up to 5,000 characters. Ideal for AI agents that need to handle multilingual text without managing API keys or subscriptions. At $0.01 per call it suits sporadic, automated, or bursty translation workloads where a subscription service would be overkill.

## Known failure modes

- Text exceeds 5,000 character limit — request rejected
- Unsupported or unrecognized target language string — may return error or fallback
- Payment of $0.01 USDC not completed — 402 Payment Required response
- Empty text field — likely returns error or empty translation
- Extremely rare or low-resource language pairs may produce low-quality translations

## How this service works

Translate text for AI agents - POST any text up to 5,000 chars with a target language, get clean JSON back: the detected source language + the full translation, never prose. Any language pair - Spanish, French, German, Japanese, Chinese, Korean, Arabic, Hindi, Portuguese, English - source auto-detected when omitted. Translation API, language translation, localize, i18n. No API key, no account. POST {text, target_lang, source_lang?}. Free sample: /translate/example.

## Output

Returns a JSON object containing the detected source language code (e.g. 'en', 'de') and the full translated text in the requested target language. No prose or filler — just clean structured output.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to translate, up to 5,000 chars"
  },
  "source_lang": {
   "type": "string",
   "description": "Optional source language; auto-detected when omitted"
  },
  "target_lang": {
   "type": "string",
   "description": "Language to translate into, free-form (\"English\", \"es\", \"Brazilian Portuguese\")"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "input_chars": 6,
  "output_chars": 13,
  "translated_text": "Hello, world!",
  "detected_source_lang": "Mandarin Chinese"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clink-lithium-vault-text-translation-api-91506673/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clink-lithium-vault.fly.dev](https://www.zero.xyz/host/clink-lithium-vault.fly.dev/llms.txt)
