# Hyperliquid Spot Token List

> Hyperliquid Spot Token List is a paid API for AI agents from klymax402.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a list of all tradeable spot tokens on Hyperliquid, optionally filtered by name or symbol substring search.

## Facts

- Endpoint: GET https://klymax402.com/api/hl-spot/api/tokens
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-spot-token-list-a8b21cc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nT3H6-DZkeihBKnqp-n8j

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 hyperliquid-spot-token-list-a8b21cc0
```

Example prompt: Can you show me all the spot tokens available on Hyperliquid, and filter it down to anything with 'ETH' in the name or symbol?

## When to prefer this

Use this endpoint when you need to discover, enumerate, or verify spot tokens listed on Hyperliquid specifically. Prefer this over generic crypto token list APIs when the user's intent is scoped to Hyperliquid's spot market — for example, before placing a trade or checking token availability on that exchange.

## Known failure modes

- Empty token array returned if search term matches nothing
- Payment failure (402) if USDC balance is insufficient
- Network timeout if Hyperliquid data source is unavailable
- Invalid search parameter type may return an error

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object with a count of matching tokens and an array of token objects. When no search filter is provided, all 454 spot tokens are returned. When a search string is provided, only tokens whose name or symbol contains that substring (case-insensitive) are returned.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "search": {
   "type": "string",
   "description": "Optional filter: search tokens by name or symbol (case-insensitive substring match). Omit to return all 454 tokens."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "tokens": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-spot-token-list-a8b21cc0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
