# Orbonomy LLM Translate

> Orbonomy LLM Translate is a paid API for AI agents from www.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://www.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-translate-f188849e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iJxfqk7Cg0kwxBjbSt4gV

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

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

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call LLM-powered text translation without committing to a subscription, especially when integrating with x402 micropayment workflows or when translating occasional one-off content across a broad range of language pairs.

## Known failure modes

- Missing required fields (text, source, or target) returns a validation error
- Unsupported language code causes translation failure
- Payment not completed via x402 protocol results in 402 Payment Required
- Malformed text input may produce garbled or empty translation
- 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 boolean 'success' field indicating whether the translation succeeded, 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-f188849e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
