# Inkbox AI Content Studio — Text Translation Converter

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

Translates written text into a specified target language using AI, returning the converted content.

## Facts

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

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-converter-56e3fea6 -d '<json body>'
```

Example prompt: Can you translate the following product description into French for me: 'Our handcrafted leather wallet is slim, durable, and fits perfectly in any pocket — available in three classic colors.'

## When to prefer this

Choose this endpoint when you need AI-powered text translation with pay-per-call USDC billing on Base, especially within workflows already using the Inkbox AI Content Studio suite. Prefer it for quick, on-demand translation without subscription overhead. Best suited for single-document or single-snippet translations where a per-call $0.08 cost is acceptable.

## Known failure modes

- Missing required 'text' field — returns 400 error
- Missing required 'target_language' field — returns 400 error
- Unsupported or unrecognized target language code — may return error or fallback
- Payment not provided or insufficient USDC — returns 402 Payment Required
- Text too long exceeding model context limits — may return truncation error or 413
- Service unavailable on Netlify hosting — returns 503 or timeout

## 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 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"
  },
  "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-converter-56e3fea6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 0ink.netlify.app](https://www.zero.xyz/host/0ink.netlify.app/llms.txt)
