# Hyperliquid Perp Markets Overview

> Hyperliquid Perp Markets Overview is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a ranked list of all Hyperliquid perpetual futures markets with mark price, funding APR, open interest, 24h volume, and basis, sortable by volume, OI, or funding.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/perps/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-perp-markets-overview-ebf574ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AiUT-SlH3RqFjPoU1xVob

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-perp-markets-overview-ebf574ed -d '<json body>'
```

Example prompt: Show me the top 50 Hyperliquid perp markets ranked by open interest — I want to see mark price, funding APR, 24h volume, and basis for each.

## When to prefer this

Use this endpoint when you need a broad market-wide snapshot of all Hyperliquid perpetuals in a single call, sorted by activity (volume, OI, or funding). Prefer this over single-coin funding or basis endpoints when building a market screener, scanning for crowded trades, or mapping the full derivatives landscape without specifying a particular coin.

## Known failure modes

- Invalid sort value (not 'volume', 'oi', or 'funding') returns an error
- Limit exceeding 200 may be capped or rejected
- Hyperliquid data feed unavailability causes upstream timeout
- Malformed request body returns 400-level error
- Payment of 0.02 USDC not provided or rejected causes 402 error

## How this service works

All Hyperliquid perp markets with mark price, funding APR, open interest, 24h volume, and basis, sorted by volume, open interest, or funding. Send { limit?, sort? }. Full derivatives market map for trading agents.

## Output

A ranked list of perpetual futures markets on Hyperliquid, each containing mark price, annualized funding APR, open interest, 24h trading volume, and basis (spot vs mark spread), ordered by the chosen sort field (volume, OI, or funding).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "type": "string",
   "description": "\"volume\" (default), \"oi\", or \"funding\""
  },
  "limit": {
   "type": "number",
   "description": "Max markets, default 25 (max 200)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-perp-markets-overview-ebf574ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
