# 402.com.tr AI Translate

> 402.com.tr AI Translate is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Translates text into a specified target language using Claude, charged at $0.02 USDC per call via x402 micropayment.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/ai-translate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-ai-translate-9d082d2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u-Wxd8nZaHf0b2N498HY1

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 402-com-tr-ai-translate-9d082d2a
```

Example prompt: Translate this text into French using the AI translator: 'The weather is beautiful today and I am very happy.'

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-use AI-powered text translation with no subscription, leveraging Claude's language capabilities. Ideal for agents that translate infrequently and want to avoid recurring API subscription costs, paying only $0.02 per translation via x402 micropayment on Base.

## Known failure modes

- Missing required 'text' query parameter returns a 400 or validation error
- Unsupported or unrecognized target language may produce an error or fallback behavior
- Payment failure via x402 (insufficient funds, wallet misconfiguration) returns 402 Payment Required
- Claude API downstream error results in a 500 or upstream failure response
- Empty text input may return an empty translation or error

## How this service works

Claude-quality translation as a pay-per-call primitive: send text= (up to 6K characters) and to= any language, get only the translation back — no notes, no wrapper prose, safe to pipe straight into the next step. One USDC micro-payment per call, no API key or subscription. Built for agents localizing content, parsing foreign-language sources, or serving multilingual users.

## Output

Returns the translated text in the specified target language, produced by Claude. The agent receives the translated string ready for use, having paid $0.02 USDC via x402 for the single translation call.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Target language"
      },
      "text": {
       "type": "string",
       "description": "Text to translate"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-ai-translate-9d082d2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
