# Inkbox AI Content Studio — Text Translation

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

Translates a given text into a specified target language using AI

## Facts

- Endpoint: POST https://inkinbox402.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-7f4b1033
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bEu9bGV30NIuQKBSxEfXA

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

Example prompt: Can you translate this product description into French using Inkbox: 'Our handcrafted leather wallet is slim, durable, and fits perfectly in any pocket'?

## When to prefer this

Use this endpoint when you need to programmatically translate arbitrary text to a specified language, pay-per-call without subscription overhead, and want AI-quality translation integrated into an automated workflow on Base/USDC billing.

## Known failure modes

- Missing 'text' or 'target_language' fields returns a 400-level error
- Unsupported or misspelled target language may return an error or unexpected output
- Empty text string may return a validation failure
- Payment not completed (402) blocks the request entirely
- Extremely long text inputs may hit token or size limits

## 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 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-7f4b1033/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from inkinbox402.netlify.app](https://www.zero.xyz/host/inkinbox402.netlify.app/llms.txt)
