# x402.tanship.dev AI Translation

> x402.tanship.dev AI Translation is a paid API for AI agents from x402.tanship.dev, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Translates text between languages using Cloudflare Workers AI (m2m100-1.2b model) for $0.003 USDC per call

## Facts

- Endpoint: POST https://x402.tanship.dev/v1/ai/translate
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-tanship-dev-ai-translation-47485594
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_calnOXlN73aL-lRwuMhLo

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 x402-tanship-dev-ai-translation-47485594 -d '<json body>'
```

Example prompt: Translate the following text from English to Spanish using the AI translation service: 'Good morning, how are you today?'

## When to prefer this

Choose this endpoint when you need lightweight, fast AI-powered text translation between many language pairs at very low cost ($0.003 USDC/call), especially in agent pipelines already using the x402 micropayment protocol on Cloudflare Workers AI infrastructure.

## Known failure modes

- Missing or malformed 'input' body returns a validation error
- Unsupported language pair may return an error or low-quality output
- Network or Workers AI backend failure returns a 5xx error
- Payment failure or insufficient USDC balance prevents access (x402 payment required)
- Overly long input text may be truncated or rejected

## How this service works

Payment-gated AI and browser automation API using the x402 protocol. All /v1/* endpoints require USDC payment on Base (eip155:8453) via x402 v2 exact scheme.

## Output

Returns the translated text in the specified target language, produced by the m2m100-1.2b multilingual translation model running on Cloudflare Workers AI.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-tanship-dev-ai-translation-47485594/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.tanship.dev](https://www.zero.xyz/host/x402.tanship.dev/llms.txt)
