# Orbonomy LLM Text Translation

> Orbonomy LLM Text Translation is a paid API for AI agents from 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 AI/LLM-powered translation engine via pay-per-call API

## Facts

- Endpoint: POST https://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-141c7223
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_udk4gk_Bd1nKiYmc3dC1X

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

Example prompt: Translate the following text from English to French using Orbonomy's LLM translation endpoint: 'Our product is now available in select markets worldwide.'

## When to prefer this

Use this endpoint when you need pay-per-call LLM-powered text translation without a subscription, especially in agentic workflows using the x402 micropayment protocol. Prefer this over subscription-based translation APIs when cost-per-call flexibility and no upfront commitment matter.

## Known failure modes

- Missing required fields (text, source, or target) returns a 4xx validation error
- Unsupported language codes for source or target may return an error or empty result
- Payment failure via x402 protocol results in a 402 Payment Required response
- Malformed JSON body returns a 400 Bad Request
- Network timeout or server error returns a 5xx response

## 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 successfully. The translated text is expected to be included 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-141c7223/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
