# momoAI Translate — LLM-Powered Text Translation

> momoAI Translate — LLM-Powered Text Translation is a paid API for AI agents from momoai-cyan.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Translates text into a target language using an LLM, with optional tone control and automatic source language detection, billed at $0.01 USDC per call via x402.

## Facts

- Endpoint: POST https://momoai-cyan.vercel.app/api/translate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/momoai-translate-llm-powered-text-translation-bcec5e16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y_1PeJ9AYtR3oDzc3V_EZ

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 momoai-translate-llm-powered-text-translation-bcec5e16 -d '<json body>'
```

Example prompt: Translate the following text into Japanese with a formal tone: 'Thank you for your continued support. We look forward to working with you.'

## When to prefer this

Choose this endpoint when you need LLM-quality translation (nuanced, tone-aware) rather than statistical MT, especially when tone control matters, when source language is unknown and auto-detection is needed, and when paying per-call in USDC on Base is acceptable or preferred over subscription-based translation APIs.

## Known failure modes

- Missing required 'text' or 'target_lang' fields returns a validation error
- Invalid language code (e.g. unsupported locale) may return an error or fallback
- Payment failure via x402 (insufficient USDC balance) blocks the request
- Very long text may exceed model context limits and return a truncation or error
- Network timeout on Vercel edge may result in a 5xx response

## How this service works

Pay-per-use LLM API. Chat, reasoning, code review, translation, summarization, data extraction, and more. Pay with USDC on Base.

## Output

Returns a JSON object with a 'translation' string containing the translated text, plus metadata including detected or specified source language, target language, tone applied, the LLM 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": {
   "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/momoai-translate-llm-powered-text-translation-bcec5e16/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from momoai-cyan.vercel.app](https://www.zero.xyz/host/momoai-cyan.vercel.app/llms.txt)
