# Nova AI Inference — Text Translation

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

Translates text from one language to another with optional tone control, using AI inference paid per-call in USDC on Base.

## Facts

- Endpoint: POST https://novav2.orbonomy.xyz/api/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/nova-ai-inference-text-translation-1bc52aa1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jQzxGO-6t4FySF2G6f1dY

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 nova-ai-inference-text-translation-1bc52aa1 -d '<json body>'
```

Example prompt: Translate the following text into Japanese using a polite tone: 'Thank you for your patience. Your order has been shipped and will arrive within 3–5 business days.'

## When to prefer this

Choose this endpoint when you need AI-powered translation with optional tone control, billed on a pay-per-call basis in USDC on Base via the x402 protocol — ideal for agents that need lightweight, cost-controlled multilingual output without a monthly subscription.

## Known failure modes

- Missing required field 'text' or 'target_lang' returns a 400 validation error
- Unsupported or invalid language code causes translation failure or incorrect output
- Payment not completed via x402 protocol results in 402 Payment Required response
- Source text too long may exceed model context limits and return an error
- Network or upstream AI model unavailability returns a 5xx error

## How this service works

Pay-per-call AI inference. Chat, reason, translate, analyze, generate. USDC on Base.

## Output

Returns a JSON object with a success flag, the translated text string, the detected or specified source language code, the target language code, the tone applied, the AI model used, and token usage metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "target_lang"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to translate"
  },
  "tone": {
   "type": "string"
  },
  "source_lang": {
   "type": "string",
   "description": "Source language code (auto-detect if omitted)"
  },
  "target_lang": {
   "type": "string",
   "description": "Target language code (e.g. ja, zh, es, id)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "tone": {
     "type": "string"
    },
    "model": {
     "type": "string"
    },
    "usage": {
     "type": "object"
    },
    "source_lang": {
     "type": "string"
    },
    "target_lang": {
     "type": "string"
    },
    "translation": {
     "type": "string"
    }
   }
  },
  "meta": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nova-ai-inference-text-translation-1bc52aa1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from novav2.orbonomy.xyz](https://www.zero.xyz/host/novav2.orbonomy.xyz/llms.txt)
