# Nova AI Translation API

> Nova AI Translation API is a paid API for AI agents from noa.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, powered by AI inference and billed per call in USDC on Base.

## Facts

- Endpoint: POST https://noa.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-translation-api-b3550605
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vb1ko7La5xv_fwKc-9YGz

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-translation-api-b3550605 -d '<json body>'
```

Example prompt: Translate the following text into Japanese using a formal tone: 'We are pleased to announce the launch of our new product line and look forward to serving our customers.'

## When to prefer this

Prefer this endpoint when you need pay-per-call AI-powered translation with no subscription, billed in USDC on Base via x402. Ideal for agents needing on-demand multilingual text conversion with optional tone control and auto source language detection, especially in crypto-native or Web3 workflows.

## Known failure modes

- Missing required field 'text' or 'target_lang' returns a validation error
- Unsupported or invalid language code causes a bad request error
- Payment failure or insufficient USDC balance results in a 402 Payment Required response
- Very long text inputs may exceed model context limits and return an error
- Ambiguous or undetectable source language may cause incorrect auto-detection

## 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 and a data object containing the translated text, detected or specified source language, target language, tone applied, the AI model used, and token usage statistics.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "target_lang"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to translate"
  },
  "tone": {
   "enum": [
    "formal",
    "casual",
    "technical",
    "natural"
   ],
   "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-translation-api-b3550605/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from noa.orbonomy.xyz](https://www.zero.xyz/host/noa.orbonomy.xyz/llms.txt)
