# Interzoid Translate To Any Language API

> Interzoid Translate To Any Language 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 arbitrary text into any specified target language using AI-powered translation

## Facts

- Endpoint: GET https://api.interzoid.com/translatetoany
- 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-any-language-api-8c41a622
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KosfUlsSB7YJzN8LxZ-z8

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-any-language-api-8c41a622
```

Example prompt: Can you translate the text 'Hello, world!' into Japanese for me?

## When to prefer this

Use this endpoint when you need to programmatically translate arbitrary text into any of a wide range of target languages via a simple GET request, especially in data pipelines, CRM enrichment, or multilingual content workflows where per-call micropayment via x402 is acceptable.

## Known failure modes

- Missing 'text' query parameter returns an error response
- Missing 'to' query parameter returns an error response
- Unrecognized or misspelled target language name may return an error or unexpected result
- Payment failure (x402) results in 402 response before translation is attempted
- Network timeout returns no translation result

## How this service works

Detect the language of input text and translate it to any specified target language. AI-powered translation supporting numerous world languages.

## Output

A JSON object containing a 'Translation' field with the translated text in the target language, a 'Code' field indicating success or failure, and a 'Credits' field showing remaining API credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "to": "Spanish",
   "text": "Hello, world!"
  }
 }
}
```

## 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",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Target language name (e.g. \"Japanese\", \"French\", \"Spanish\")"
      },
      "text": {
       "type": "string",
       "description": "Text to translate"
      }
     }
    }
   },
   "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": "こんにちは世界"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-translate-to-any-language-api-8c41a622/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)
