# Interzoid Translate to English API

> Interzoid Translate to English API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Translates text in any language to English using AI

## Facts

- Endpoint: GET https://api.interzoid.com/translatetoenglish
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-translate-to-english-api-5578946f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BHePk2G_Mr32gcZ_wGnGn

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 interzoid-translate-to-english-api-5578946f
```

Example prompt: Translate this text to English for me: 'Hola, ¿cómo estás? Espero que tengas un buen día.'

## When to prefer this

Use this endpoint when you need to translate arbitrary multilingual text to English on a per-call basis, especially in data pipelines for CRM, ERP, MDM, or analytics platforms. It is well-suited for enriching foreign-language records in Snowflake, AWS, or Azure environments. Choose this over general-purpose translation APIs when working within the Interzoid AI data platform ecosystem or when paying per-call via x402/USDC microtransactions.

## Known failure modes

- Missing 'text' query parameter returns an error response
- Empty or whitespace-only text input may return an empty translation
- Unsupported or ambiguous script may produce poor translation quality
- Network timeout if the AI translation service is under load
- Insufficient credits or payment failure returns a non-success Code

## How this service works

Detect the language of input text and translate it to English. Supports numerous world languages with AI-powered translation.

## Output

Returns a JSON object with a Code field indicating success, a Credits field showing remaining credits, and a Translation field containing the English translation of the submitted text.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "text": "Bonjour, comment allez-vous?"
  }
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Text in any language to translate to English"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "Translation": "Hello World"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-translate-to-english-api-5578946f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
