# Hyperliquid Perp OI & Volume Leaderboard

> Hyperliquid Perp OI & Volume Leaderboard is a paid API for AI agents from opportunity-api-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the top-20 perpetual futures coins on Hyperliquid ranked by open interest or volume in USD, with mark price and hourly funding rate.

## Facts

- Endpoint: GET https://opportunity-api-production.up.railway.app/api/oi-leaders
- 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/hyperliquid-perp-oi-volume-leaderboard-1d8171a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SGEDR_VgQfcD4yoXIW4bC

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-oi-volume-leaderboard-1d8171a6
```

Example prompt: Show me the top 20 perp markets on Hyperliquid ranked by open interest — I want to see where leverage is concentrated, along with mark prices and hourly funding rates.

## When to prefer this

Use this endpoint when you need a ranked overview of leverage concentration across all Hyperliquid perpetual markets — ideal for macro positioning analysis, identifying high-funding-rate arbitrage targets, or understanding which coins are seeing the most speculative activity. Prefer this over single-coin orderbook depth endpoints when you need a cross-market leaderboard view rather than granular book data for one asset.

## Known failure modes

- Invalid sort parameter value returns an error or falls back to default OI sort
- Hyperliquid API unavailability causes upstream data fetch failure
- Stale data if the underlying Hyperliquid feed is delayed
- Payment failure (x402) blocks the request before it reaches the endpoint

## How this service works

Perp open-interest and volume leaderboard (Hyperliquid): top-20 coins by OI (or volume) in USD, with mark price and hourly funding. Where leverage is concentrated. Param: sort (oi|volume).

## Output

A ranked list of up to 20 perpetual futures coins with their open interest in USD, trading volume in USD, current mark price, and hourly funding rate — revealing where leverage and speculative activity are concentrated on Hyperliquid.

## 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",
     "required": [],
     "properties": {
      "sort": {
       "type": "string",
       "description": "oi (default) or volume"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-perp-oi-volume-leaderboard-1d8171a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from opportunity-api-production.up.railway.app](https://www.zero.xyz/host/opportunity-api-production.up.railway.app/llms.txt)
