# Inkbox AI Content Studio — Text Translation

> Inkbox AI Content Studio — Text Translation is a paid API for AI agents from inkonbox.netlify.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Translates a block of text into a specified target language using AI.

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/convert
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-content-studio-text-translation-21e26f0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XL6jqGeZiZzyScQkU7i3a

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 inkbox-ai-content-studio-text-translation-21e26f0c -d '<json body>'
```

Example prompt: Translate the following product description into French using Inkbox: 'Our premium wireless headphones deliver rich, deep sound with 30-hour battery life and a comfortable over-ear fit.'

## When to prefer this

Use this endpoint when you need a quick, pay-per-call AI translation of a text snippet into a specific language without setting up a full translation service account. Best suited for single-call, on-demand localization within an automated agent workflow paying via USDC on Base.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing or invalid 'target_language' causes error or poor translation
- Unsupported target language code may return error or fallback
- Payment failure (402) if USDC balance is insufficient
- Very long input text may time out or be truncated
- Network errors to the Netlify-hosted endpoint

## How this service works

Draft, rewrite, translate, and optimize written content. 25 AI-powered endpoints. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a boolean 'success' field and a 'data' object containing the AI-generated translation of the input text in the requested target language.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "target_language"
 ],
 "properties": {
  "text": {
   "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/inkbox-ai-content-studio-text-translation-21e26f0c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from inkonbox.netlify.app](https://www.zero.xyz/host/inkonbox.netlify.app/llms.txt)
