# Orbonomy LLM Text Translation

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

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

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/llm/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/orbonomy-llm-text-translation-31952f2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RUZuy601Vg47Z4FgAHPkr

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-31952f2b -d '<json body>'
```

Example prompt: Translate the following text from English to Spanish: 'Our new product line is available for pre-order starting next Monday.'

## When to prefer this

Use this endpoint when you need LLM-powered translation as a pay-per-call service without a subscription, especially when integrating into autonomous agent workflows that support x402 micropayments. Prefer this over subscription-based translation APIs when usage is sporadic or when you want per-call cost control at $0.05 USDC.

## Known failure modes

- Unsupported language code returns an error or failed success flag
- Empty or missing text field causes a 400-level error
- Invalid source or target language identifiers cause translation failure
- Payment not processed via x402 protocol results in 402 Payment Required
- Network timeout for long text inputs

## 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 success boolean and the translated text converted from the specified source language into the target language.

## 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-31952f2b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
