# Synergy Text Translation

> Synergy Text Translation is a paid API for AI agents from api.exo-trust.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Translates text from any language to a target language with automatic source language detection, returning the translation plus confidence notes for ambiguous terms.

## Facts

- Endpoint: POST https://api.exo-trust.com/execute/translate
- 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/synergy-text-translation-3f0f239e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wo5w8zoK6-wcoccQ83QjA

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 synergy-text-translation-3f0f239e -d '<json body>'
```

Example prompt: Translate the following text to French — I don't know what language it's in, just auto-detect it and flag any terms you're not confident about: 'La experiencia fue increíble, pero el servicio dejó mucho que desear.'

## When to prefer this

Choose this endpoint when you need automatic source language detection alongside translation, and when surfacing ambiguous or low-confidence term translations is important for downstream review or human-in-the-loop workflows. Ideal for multilingual pipelines processing user-generated content of unknown origin. If you already know the source language and need bulk/batch translation, a dedicated translation API with batch support may be more cost-efficient.

## Known failure modes

- Unsupported target language code returns an error or empty translation
- Extremely short or single-character input may lead to incorrect language detection
- Highly technical or domain-specific jargon may produce low-confidence flags on many terms
- Missing or malformed 'target' field results in a validation error
- Mixed-language input text may cause partial or incorrect auto-detection

## How this service works

Translate text between languages with the source language auto-detected. Returns the translation plus a confidence note for ambiguous terms.

## Output

Returns the translated text in the target language, along with a confidence note highlighting any terms or phrases where the translation was ambiguous or uncertain, allowing downstream review of low-confidence segments.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  },
  "source": {
   "type": "string"
  },
  "target": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "notes": [
    "example"
   ],
   "source_language": "example",
   "target_language": "example",
   "translated_text": "example"
  },
  "status": "completed",
  "receipt": {
   "amount": 0.05,
   "method": "x402",
   "settled": true,
   "currency": "USDC"
  },
  "task_id": "00000000-0000-0000-0000-000000000000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synergy-text-translation-3f0f239e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.exo-trust.com](https://www.zero.xyz/host/api.exo-trust.com/llms.txt)
