# Hyperliquid Spot Markets Data

> Hyperliquid Spot Markets Data 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 Hyperliquid spot markets with pricing and volume data, sortable by volume, price change, or name

## Facts

- Endpoint: GET https://klymax402.com/api/hl-spot/api/markets
- 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-markets-data-7922559f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7d8Sr_x66l-wA5jZD_d3Q

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-markets-data-7922559f
```

Example prompt: Can you pull up the Hyperliquid spot markets sorted by biggest price movers today?

## When to prefer this

Choose this endpoint when you need a current snapshot of all available Hyperliquid spot markets with sorting flexibility. It is ideal for market discovery, screening top-volume tokens, or identifying price movers on Hyperliquid specifically, without needing an API key.

## Known failure modes

- Invalid sort parameter value returns an error
- Payment failure (insufficient USDC balance) returns 402
- Empty markets array if no markets are currently listed
- Network timeout if Hyperliquid upstream is unresponsive

## 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

A JSON object containing a count of available spot markets and an array of market objects with details such as names, pricing, and volume metrics from Hyperliquid's spot trading platform.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "enum": [
    "volume",
    "change",
    "name"
   ],
   "type": "string",
   "description": "Sort order for results. 'volume' = highest 24h volume first (default), 'change' = biggest price movers first, 'name' = alphabetical."
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-spot-markets-data-7922559f/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)
