# Inkbox AI Content Studio — Text Translation

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

Converts text from its source language into a specified target language using AI.

## Facts

- Endpoint: POST https://1nk30x.netlify.app/api/convert
- Price: $0.08/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-translation-b5dc3861
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Om7Xnf1_DOrNbLx-cNi1b

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

Example prompt: Can you translate this product description into Spanish for me? The text is: 'Our premium coffee blend is sourced from the finest Arabica beans in Colombia, roasted to perfection for a smooth, rich flavor.'

## When to prefer this

Use this endpoint when you need AI-powered language translation of written content as a pay-per-call service without a subscription, particularly when already using other Inkbox AI Content Studio endpoints for drafting, rewriting, or optimizing content in the same workflow.

## Known failure modes

- Missing required 'text' field returns an error
- Missing required 'target_language' field returns an error
- Unsupported or misspelled target language may produce an error or unexpected output
- Payment not processed (402) — USDC payment on Base required before content is returned
- Service unavailable on Netlify hosting — 503 or timeout
- Very long text inputs may exceed limits or produce truncated results

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