# Orbonomy LLM Text Translation

> Orbonomy LLM Text Translation is a paid API for AI agents from backup-v2api.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Translates text from one language to another using an LLM-powered translation endpoint via pay-per-call API.

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/llm/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/orbonomy-llm-text-translation-324c27e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hFB24dothiZsdlFjmRWPR

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 orbonomy-llm-text-translation-324c27e1 -d '<json body>'
```

Example prompt: Translate the following text from English to Spanish: 'Welcome to our platform, we hope you enjoy your experience here.'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call LLM-powered translation without committing to a subscription-based translation service. Useful for agents that occasionally need multilingual support and want to pay only per use via USDC microtransaction.

## Known failure modes

- Missing required field (text, source, or target) returns a validation error
- Unsupported language code for source or target results in failure
- Payment not processed correctly via x402 protocol causes request rejection
- Text too long may exceed model limits and return an error
- Invalid JSON body format causes a 400-level error

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a boolean 'success' field indicating whether the translation completed. The translated text is expected in the response body, though the schema only explicitly documents the success flag.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-llm-text-translation-324c27e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from backup-v2api.orbonomy.xyz](https://www.zero.xyz/host/backup-v2api.orbonomy.xyz/llms.txt)
