# Inkbox AI Content Studio — Text Conversion & Translation

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

Converts or translates written text into a specified target language using AI.

## Facts

- Endpoint: POST https://xinkx402.netlify.app/api/convert
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-content-studio-text-conversion-translation-aa766f95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I1Ga3p5fZMkeOrXcKB6o6

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-conversion-translation-aa766f95 -d '<json body>'
```

Example prompt: Can you translate this product description into Spanish for me: 'Our handcrafted leather wallet features three card slots and a hidden pocket, made from full-grain Italian leather'?

## When to prefer this

Choose this endpoint when you need to programmatically translate or convert text content into another language at per-call pricing with USDC payment, especially within automated agent workflows that handle multilingual content pipelines without requiring a subscription to a standalone translation service.

## Known failure modes

- Missing required `text` field returns validation error
- Missing required `target_language` field returns validation error
- Unsupported or unrecognized language code may result in error or poor output
- Payment failure (insufficient USDC) returns 402 Payment Required
- Very long input text may exceed processing limits
- Ambiguous language codes (e.g. 'zh' vs 'zh-TW') may produce unexpected dialect output

## 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 converted or translated text output 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-conversion-translation-aa766f95/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from xinkx402.netlify.app](https://www.zero.xyz/host/xinkx402.netlify.app/llms.txt)
