# Inkbox AI Content Studio — Text Translation

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

Translates a given text into a specified target language using AI

## Facts

- Endpoint: POST https://pen-inkbox402.netlify.app/api/convert
- Price: $0.2/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-777521f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LyPln5qc5ohGHblyCmIKU

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

Example prompt: Translate the following product description into Spanish using Inkbox: 'Our premium leather wallet is handcrafted for durability and style, featuring 8 card slots and an RFID-blocking layer.'

## When to prefer this

Choose this endpoint when you need a pay-per-call AI translation without a subscription, especially inside an agent workflow that pays via USDC on Base (x402 protocol). Ideal for translating isolated pieces of written content such as product descriptions, blog posts, or marketing copy when you need a single-call, stateless conversion with no rate-limit tiers.

## Known failure modes

- Missing 'text' field returns 400 validation error
- Missing 'target_language' field returns 400 validation error
- Unsupported or misspelled language code may return an error or garbled output
- Payment not included or insufficient USDC triggers 402 Payment Required
- Very long text inputs may exceed processing limits and return an error
- Network timeout on Netlify serverless function for heavy payloads

## 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 AI-translated version of the input 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-777521f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pen-inkbox402.netlify.app](https://www.zero.xyz/host/pen-inkbox402.netlify.app/llms.txt)
