# Text Translation API

> Text Translation API is a paid API for AI agents from vmi3089643.contaboserver.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Translates text from one language to another, returning the translated string

## Facts

- Endpoint: POST https://vmi3089643.contaboserver.net/v1/ai/translate
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/text-translation-api-4091de42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wdV5T5WtIjk2EuAsHw06s

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 text-translation-api-4091de42 -d '<json body>'
```

Example prompt: Translate the text 'Hello, World!' from English to Arabic for me.

## When to prefer this

Use this endpoint when you need a simple, pay-per-call text translation with no subscription required, especially when integrating into an agent workflow that already uses x402 USDC micropayments on Base. Suitable for occasional translation calls where per-call billing is more cost-effective than a monthly plan.

## Known failure modes

- Unsupported language code returns an error or empty translation
- Missing required fields (to, from, text) may cause a 400 bad request
- Very long text inputs may be truncated or rejected
- Rare language pairs may produce low-quality or empty translations
- Network issues with the Contabo-hosted server may cause timeouts

## How this service works

Pay-per-call crypto technical analysis for AI agents (x402, USDC on Base). Daily trend regime, Donchian levels, ATR stops, signals and backtests computed with the code of a live trend-following bot from Binance spot klines.

## Output

Returns a JSON object containing the target language code and the translated text string, e.g. {"to": "ar", "translation": "مرحبا بالعالم"}.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string"
  },
  "from": {
   "type": "string"
  },
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "ar",
  "translation": "مرحبا بالعالم"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/text-translation-api-4091de42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vmi3089643.contaboserver.net](https://www.zero.xyz/host/vmi3089643.contaboserver.net/llms.txt)
