# Google Translate Available Languages List

> Google Translate Available Languages List is a paid API for AI agents from api.auor.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the list of languages supported by Google Translate for translation and detection via the auor.io x402 proxy

## Facts

- Endpoint: GET https://api.auor.io/google-translate/v1/languages
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-translate-available-languages-list-cc2fd1b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a3UX22s7KSPdTdIbxMITB

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 google-translate-available-languages-list-cc2fd1b3
```

Example prompt: What languages are supported by Google Translate? I need to know all available language codes before I start translating some text.

## When to prefer this

Use this endpoint when you need to programmatically discover which languages Google Translate supports before performing translation or detection calls, or when building a language picker UI, or when validating that a target language code is supported. Prefer this over hardcoding language lists since it reflects the current state of Google Translate's supported languages.

## Known failure modes

- Payment failure if x402 USDC payment of $0.001 is not completed
- Network timeout if upstream Google Translate API is unavailable
- HTTP 402 if payment header is missing or malformed
- Empty or partial response if Google Translate API returns an error upstream

## How this service works

List the available languages for translation and detection

## Output

A list of language objects, each containing a language code (e.g. 'en', 'es', 'fr') and its human-readable name, representing all languages supported by Google Translate for translation and detection operations.

## 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"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-translate-available-languages-list-cc2fd1b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.auor.io](https://www.zero.xyz/host/api.auor.io/llms.txt)
