# Axon Languages List

> Axon Languages List is a paid API for AI agents from axiaxai.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Returns a list of supported language codes and their full names available for translation and language detection on the Axon platform

## Facts

- Endpoint: GET https://axiaxai.vercel.app/api/languages
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/axon-languages-list-86332a95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IbVY0X3OZ6lFYiwKy2hX_

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 axon-languages-list-86332a95
```

Example prompt: What languages does Axon support for translation — can you pull the full list of available language codes and their names?

## When to prefer this

Use this endpoint when you need to discover which language codes are valid inputs for other Axon endpoints (translation, language detection, SEO content generation). It is a prerequisite discovery step before calling any language-parameterized Axon endpoint. Prefer this over hardcoding language codes.

## Known failure modes

- Service unavailable if the Vercel deployment is down
- Unexpected empty or partial language list if the backend data is incomplete
- x402 payment required error if micropayment is not attached (though this endpoint may be unauthenticated)
- Malformed JSON response if the upstream service errors

## How this service works

Axon provides AI-powered crypto intelligence endpoints covering token research, market analysis, contract auditing, sentiment tracking, news summarization, portfolio advice, deep research, text translation, language detection, SEO content generation, and contract explanation. All analytical endpoints require x402 micropayment on Base.

## Output

A JSON object with a 'languages' map where keys are ISO language codes (e.g. 'en', 'id') and values are the corresponding full language names (e.g. 'English', 'Indonesian').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "languages": {
   "en": "English",
   "id": "Indonesian"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/axon-languages-list-86332a95/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from axiaxai.vercel.app](https://www.zero.xyz/host/axiaxai.vercel.app/llms.txt)
