# Tempest AI Text Translation

> Tempest AI Text Translation is a paid API for AI agents from tumpest.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Translates text from one language to another using AI, with optional auto-detection of the source language

## Facts

- Endpoint: POST https://tumpest.vercel.app/api/transpose
- 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/tempest-ai-text-translation-ed6c23db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SEJBydxs-cdKQRd6p5Usk

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 tempest-ai-text-translation-ed6c23db -d '<json body>'
```

Example prompt: Translate the following text to French — 'Our new product line launches this spring with three exciting collections' — the source is English.

## When to prefer this

Use this endpoint when you need AI-powered text translation with auto-detection of the source language, especially within a broader content pipeline that also uses other Tempest AI writing endpoints. At $0.20 USDC per call via x402, it suits agent workflows requiring pay-per-use, on-demand translation without subscription overhead.

## Known failure modes

- Missing required target_language field returns an error
- Unsupported language codes may cause a translation failure
- Very long text inputs may exceed token limits and fail
- Network errors or service downtime return non-200 responses
- Payment failure (insufficient USDC) blocks the request via x402

## How this service works

Compose, rewrite, translate, and refine content at scale. 25 AI-powered endpoints. Pay-per-call with USDC on Tempo.

## Output

A JSON response with a success boolean and a data object containing the translated text in the target language, with automatic source language detection if not specified.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "target_language"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to translate"
  },
  "source_language": {
   "type": "string",
   "description": "Source language (auto-detect if omitted)"
  },
  "target_language": {
   "type": "string",
   "description": "Target language"
  }
 }
}
```

## 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/tempest-ai-text-translation-ed6c23db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tumpest.vercel.app](https://www.zero.xyz/host/tumpest.vercel.app/llms.txt)
