# Axon Supported Chains List

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

Returns a mapping of supported blockchain chain IDs to their human-readable names (e.g. Ethereum, Base)

## Facts

- Endpoint: GET https://axonx.vercel.app/api/chains
- 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/axon-supported-chains-list-e767c01e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hNEET_gFmxTKvRYcOKJjm

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-supported-chains-list-e767c01e
```

Example prompt: What blockchains does Axon support? I need to know which chain IDs and network names are available before I run a token research query.

## When to prefer this

Use this endpoint when you need to enumerate all blockchain networks supported by Axon before making token research, market analysis, or contract auditing calls — useful for validating chain parameters or presenting network options to a user.

## Known failure modes

- Missing or invalid x402 micropayment header returns 402 Payment Required
- Service unavailable returns 500 error
- Empty or malformed properties filter may return unexpected results

## 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 'chains' key mapping integer chain IDs (e.g. 1, 8453) to their human-readable network names (e.g. 'Ethereum', 'Base').

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chains": {
   "1": "Ethereum",
   "8453": "Base"
  }
 }
}
```

## More

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