# Orbonomy LLM Translate

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

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

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/llm/translate
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-translate-1bf761ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DybIQifnjXCOTCVr57NEs

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-translate-1bf761ba -d '<json body>'
```

Example prompt: Translate this text from English to French using Orbonomy: 'Welcome to our platform, we hope you enjoy your experience.'

## When to prefer this

Choose this endpoint when you need a pay-per-call, LLM-powered text translation without a subscription, especially in agent workflows using the x402 payment protocol. Prefer this over subscription-based translation APIs when cost-per-use billing is important or when integrating into crypto-native payment pipelines.

## Known failure modes

- Missing required field (text, source, or target) returns a validation error
- Unsupported language code for source or target causes a failure response
- Payment not processed (x402 protocol issue) results in HTTP 402 and no translation
- Invalid or malformed text input may result in a failed or empty response
- Network timeout if the LLM backend is slow or unavailable

## How this service works

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

## Output

A JSON object with a 'success' boolean field indicating whether the translation completed, along with the translated text output.

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