# Hyperliquid Markets Data via klymax402

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

Fetches the list of available trading markets on the Hyperliquid decentralized exchange

## Facts

- Endpoint: GET https://klymax402.com/api/hyperliquid-data/api/markets
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-markets-data-via-klymax402-669ecda1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hQix4BPvYwh3cNlBk5QT4

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-markets-data-via-klymax402-669ecda1
```

Example prompt: What markets are currently available to trade on Hyperliquid? I want to see the full list of trading pairs.

## When to prefer this

Use this endpoint when you need a quick, no-parameter lookup of all available markets on Hyperliquid DEX, especially within an agent workflow that already uses the klymax402 MCP bundle and wants to avoid managing separate API keys for Hyperliquid.

## Known failure modes

- Empty markets array returned if Hyperliquid data is unavailable
- Payment failure if USDC balance is insufficient (HTTP 402)
- Upstream Hyperliquid API unavailability causing 5xx errors
- Rate limiting or quota exceeded errors

## 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 available markets and an array of market objects on the Hyperliquid exchange, including trading pair details.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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