# Hergert Synthora Translate

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

Translates text from any language to a specified target language, with optional auto-detection of the source language and Ed25519-signed results

## Facts

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

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 hergert-synthora-translate-a91c2d61 -d '<json body>'
```

Example prompt: Translate this text to Spanish — 'Hello world' — and auto-detect what language it's in. I need the result signed so I can verify it later.

## When to prefer this

Choose this endpoint when you need cryptographically signed translation results (Ed25519), require pay-per-call pricing at $0.05 USDC with no subscription, or are building an autonomous agent pipeline that benefits from verifiable, tamper-evident translated output. Useful for short-to-medium text (up to 4000 chars) with optional source language auto-detection.

## Known failure modes

- Text exceeds 4000 character limit — request rejected or truncated
- Invalid or unsupported target language code — error response
- Payment of $0.05 USDC not received — 402 Payment Required
- Malformed request body missing required 'text' or 'target' fields — validation error
- Source language auto-detection failure for very short or ambiguous input

## How this service works

SYNTHORA translate: translate any text between 100+ languages with automatic source-language detection. Preserves tone, formatting and placeholders. Deterministic JSON output, Ed25519-signed. SYNTHORA.

## Output

A JSON object with ok:true, the niche field set to 'translate', and a result object containing the translated text, detected source language, target language, character count, and an Ed25519 digital signature for authenticity verification.

## 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"
  }
 }
}
```

## More

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