# Bolt Translate

> Bolt Translate is a paid API for AI agents from boltx402.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Translates text from one language to another using AI-powered translation

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/translate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-translate-6792f88e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RKWkS2gcL97OnNfITA9Bj

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 bolt-translate-6792f88e -d '<json body>'
```

Example prompt: Translate this text to French: 'The meeting has been rescheduled to next Monday at 3pm, please update your calendars accordingly.'

## When to prefer this

Choose this endpoint when you need pay-per-use text translation without a subscription, especially in agent workflows where translation is an occasional step rather than a core feature. Useful when you want to avoid committing to a dedicated translation API and prefer micro-payment billing in USDC via x402.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'target_language' field returns validation error
- Unsupported language code may return error or empty result
- Payment failure via x402 returns 402 Payment Required
- Very long text may exceed limits or increase latency
- Unrecognized source_language code may cause fallback to auto-detection or error

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing the translated text in the specified target language.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "target_language"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "source_language": {
   "type": "string"
  },
  "target_language": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-translate-6792f88e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
