# Bolt Translate

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

Translates text from one language to another, with optional source language specification

## Facts

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

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-15c2a3f1 -d '<json body>'
```

Example prompt: Translate this text to French for me: 'Thank you for your order, it will arrive in 3-5 business days.'

## When to prefer this

Use this endpoint when you need quick, per-request machine translation without committing to a subscription-based translation service. It's especially suitable for AI agents that need on-demand translation as part of a larger workflow and prefer paying per call in USDC via x402.

## Known failure modes

- Unsupported target or source language code returns an error
- Empty or missing 'text' field causes a validation error
- Missing 'target_language' field causes a 400-level error
- Very long text inputs may fail or be truncated
- Payment failure via x402 results in a 402 response before processing

## 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 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-15c2a3f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datault.orbonomy.xyz](https://www.zero.xyz/host/datault.orbonomy.xyz/llms.txt)
