# Synthora Translate

> Synthora Translate is a paid API for AI agents from translate.hergertsynthora.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Translates text between 100+ languages with automatic source-language detection, preserving tone, formatting, and placeholders, returning deterministic Ed25519-signed JSON.

## Facts

- Endpoint: POST https://translate.hergertsynthora.com/service
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-translate-1508bd0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Rm5sj1Ybx1rpqabduM5M9

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 synthora-translate-1508bd0a -d '<json body>'
```

Example prompt: Translate the following text to Japanese, auto-detecting the source language: 'Your order has been shipped and will arrive by {delivery_date}.' — make sure the placeholder is preserved.

## When to prefer this

Choose this endpoint when you need deterministic, cryptographically verifiable (Ed25519-signed) translations with placeholder and formatting preservation, especially in automated pipelines where auditability or reproducibility of output matters. Ideal for localization workflows handling UI strings with tokens. At $0.001 per call it suits high-volume use cases.

## Known failure modes

- Text exceeds 4000 character limit — request rejected with validation error
- Unsupported or unrecognized target language code — returns error indicating invalid language
- Source language auto-detection fails on very short or ambiguous input — may return wrong language or error
- Payment of 0.001 USDC not provided or fails — HTTP 402 returned, translation not performed
- Network timeout or service unavailability — HTTP 5xx error

## How this service works

Translate any text between 100+ languages with automatic source-language detection. Preserves tone, formatting and placeholders. Deterministic JSON output, Ed25519-signed. 0.001 USDC via x402 on Base. SYNTHORA.

## Output

A deterministic JSON object containing the translated text, the detected or specified source language, and the target language, cryptographically signed with Ed25519 for auditability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to translate (max 4000 chars)"
  },
  "source": {
   "type": "string",
   "description": "Optional source language; auto-detected if omitted"
  },
  "target": {
   "type": "string",
   "description": "Target language ISO code or name, e.g. es, fr, Japanese"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "translate",
  "result": {
   "chars": 11,
   "signed": "ed25519",
   "target": "es",
   "detected": "en",
   "translation": "Hola mundo"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-translate-1508bd0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from translate.hergertsynthora.com](https://www.zero.xyz/host/translate.hergertsynthora.com/llms.txt)
