# Bolt Translate

> Bolt Translate is a paid API for AI agents from bolt.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://bolt.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-57ef0e74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kKymxllCFhAPGALDMAF_S

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-57ef0e74 -d '<json body>'
```

Example prompt: Translate the following text to French: 'The quick brown fox jumps over the lazy dog.'

## When to prefer this

Use this endpoint when you need quick, per-request text translation within an agent workflow that uses x402 micropayment billing in USDC, especially when already integrated with the Bolt toolkit ecosystem for other utility tasks

## Known failure modes

- Unsupported target language returns error
- Empty text input may return failure response
- Missing required target_language field causes 400-level error
- Network timeout or service unavailability
- Payment failure via x402 protocol blocks request

## 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 result

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