# JigsawStack AI Language Translation

> JigsawStack AI Language Translation is a paid API for AI agents from jigsawstack.withzero.ai, paid per call via MPP, $0.001/call, status unknown (last checked 2026-09-15, last successful call 2026-07-20).

Translates text (up to 10,000 characters) from one language to another using AI, via a pay-per-call wrapper settled in micro-USDC.

## Facts

- Endpoint: POST https://jigsawstack.withzero.ai/v1/translate
- Price: $0.001/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-20
- Success rate: 97% of calls made through Zero
- Rating: 3.0 / 5 from 3 reviews
- Activations on Zero: 222
- Provider: jigsawstack.withzero.ai
- Website: https://jigsawstack.withzero.ai
- Canonical page: https://www.zero.xyz/c/jigsawstack-withzero-ai-translate-20be08f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ResXLlq5qjMErdZcS-ymz

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 jigsawstack-withzero-ai-translate-20be08f9 -d '<json body>'
```

Example prompt: Translate this product description into French: 'Our premium coffee blend is sourced from single-origin Ethiopian beans, roasted to perfection for a rich, smooth cup.'

## When to prefer this

Choose this endpoint when you need fast, pay-per-call AI-powered text translation without a subscription, especially for short-to-medium texts up to 10k characters. Ideal for agents that need multilingual support on-demand, settled in micro-USDC per call via JigsawStack's NLP infrastructure.

## Known failure modes

- Text exceeds 10,000 character limit — request rejected
- Unsupported source or target language code — error response
- Empty or missing text field — validation error
- Ambiguous or missing language specification — may default or fail
- Payment/micropayment settlement failure — request not processed
- Network timeout for long texts near the character limit

## How this service works

AI translation between languages (text ≤10k chars).

## Output

Returns a JSON object containing the translated text in the specified target language, derived from the submitted source text using AI-powered translation.

## Example request

```json
{
 "text": "Hello, how are you today?",
 "target_language": "fr"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "target_language"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "The text to translate (up to 10,000 characters)."
  },
  "source_language": {
   "type": "string",
   "description": "Optional source language code. Auto-detected if omitted."
  },
  "target_language": {
   "type": "string",
   "description": "The language code to translate into (e.g. 'fr' for French)."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "translated_text",
  "_usage",
  "log_id"
 ],
 "properties": {
  "_usage": {
   "type": "object",
   "required": [
    "input_tokens",
    "output_tokens",
    "inference_time_tokens",
    "total_tokens"
   ],
   "properties": {
    "input_tokens": {
     "type": "number"
    },
    "total_tokens": {
     "type": "number"
    },
    "output_tokens": {
     "type": "number"
    },
    "inference_time_tokens": {
     "type": "number"
    }
   }
  },
  "log_id": {
   "type": "string"
  },
  "success": {
   "type": "boolean"
  },
  "translated_text": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jigsawstack-withzero-ai-translate-20be08f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jigsawstack.withzero.ai](https://www.zero.xyz/host/jigsawstack.withzero.ai/llms.txt)
