# Inkbox AI Content Studio — Text Translation

> Inkbox AI Content Studio — Text Translation is a paid API for AI agents from lastink.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://lastink.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-a2589c0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wl2CgJQt7H-vqUKTrDQGb

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

Example prompt: Translate this product description into Spanish using Inkbox: 'Our premium noise-canceling headphones deliver crystal-clear audio with 30-hour battery life.'

## When to prefer this

Choose this endpoint when you need to translate written content into another language as a pay-per-call service without a subscription, especially when already using the Inkbox AI Content Studio suite for other content tasks. Suitable for occasional or variable-volume translation needs billed in USDC on Base.

## Known failure modes

- Missing required field 'text' or 'target_language' returns a validation error
- Unsupported or unrecognized target language code may cause an error or degraded output
- Empty or very short input text may yield unexpected results
- Payment failure (insufficient USDC balance) blocks the request with a 402 response
- Rate limiting or service unavailability on the Netlify-hosted backend returns 5xx errors

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