# Tempest AI Text Translation

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

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

## Facts

- Endpoint: POST https://trempest.vercel.app/api/transpose
- 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/tempest-ai-text-translation-946d755e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QKIYH1oSAOejeneYpuOFJ

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

Example prompt: Can you translate the following paragraph into Spanish? The source is English: 'Our new product line launches next quarter and we're excited to share it with our customers.'

## When to prefer this

Choose this endpoint when you need AI-powered, pay-per-call language translation without a subscription, particularly in agentic or automated pipelines that pay with USDC via x402. It is well-suited for on-demand localization of short to medium text snippets such as product descriptions, UI strings, or customer messages, especially when source language auto-detection is useful.

## Known failure modes

- Missing required 'text' or 'target_language' fields returns a validation error
- Unsupported or misspelled language codes may result in a failure or fallback response
- Very long texts may exceed processing limits or increase latency
- Payment failure (insufficient USDC) blocks the request at the x402 layer
- Auto-detection may fail or misidentify the source language for very short or ambiguous inputs

## How this service works

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

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the translated text in the target language. If source_language is omitted, the API auto-detects it before translating.

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