Discover/app.hyperliquid.xyz API
live

app.hyperliquid.xyz APIapp.hyperliquid.xyz

Access Hyperliquid leaderboard, perpetual and spot market data, live order books, trader positions, and delta-neutral strategy detection via a single API.

Endpoints
7
Updated
10d ago
Try it
Time window filter: allTime, 30d, 7d, 24h
Minimum account value filter
api.parse.bot/scraper/29f3831a-dcb7-4687-b5e3-b564048f842c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/29f3831a-dcb7-4687-b5e3-b564048f842c/get_leaderboard?window=allTime&min_value=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Fetch the full leaderboard dataset including all traders with their account values and performance across time windows (day, week, month, allTime). Returns up to ~12000 rows due to response size limits.

Input
ParamTypeDescription
windowstringTime window filter: allTime, 30d, 7d, 24h
min_valuenumberMinimum account value filter
Response
{
  "type": "object",
  "fields": {
    "leaderboardRows": "array of trader objects with ethAddress, accountValue, windowPerformances, displayName, prize"
  },
  "sample": {
    "data": {
      "leaderboardRows": [
        {
          "prize": 0,
          "ethAddress": "0x85ecf584f25db6f146718b86d493e33c5af72052",
          "displayName": null,
          "accountValue": "44112588.8588719964",
          "windowPerformances": [
            [
              "day",
              {
                "pnl": "-1091056.7594539998",
                "roi": "-0.0241584711",
                "vlm": "1133296907.2800002098"
              }
            ],
            [
              "week",
              {
                "pnl": "-329772.6874760001",
                "roi": "-0.0069435938",
                "vlm": "6290274900.4399995804"
              }
            ],
            [
              "month",
              {
                "pnl": "-448710.9471900003",
                "roi": "-0.0076790482",
                "vlm": "24266309761.7599945068"
              }
            ]
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the app.hyperliquid.xyz API

This API exposes 7 endpoints covering Hyperliquid DEX trading data: leaderboard rankings for up to ~12,000 traders, live perpetual and spot market feeds, 20-level order books, and open position data by wallet address. The identify_delta_neutral_traders endpoint goes further by analyzing top-volume traders for offsetting spot and perp positions, returning hedge ratios and net delta per asset.

Leaderboard and Trader Rankings

The get_leaderboard endpoint returns the full Hyperliquid trader ranking set — up to ~12,000 rows — with each row containing ethAddress, accountValue, displayName, and windowPerformances across four time windows: allTime, 30d, 7d, and 24h. Use the min_value parameter to filter out low-capital accounts. get_top_traders slices the same dataset by PNL rank, returning pnl, roi, and vlm strings for any specified window alongside wallet address and display name.

Market Data — Perps and Spot

get_all_perp_markets returns live data for every listed perpetual futures symbol: markPx, midPx, funding (current funding rate), dayNtlVlm (24-hour notional volume), openInterest, prevDayPx, maxLeverage, and szDecimals. No symbol parameter is needed — it returns the full universe in one call. get_all_spot_markets covers the spot side, returning a tokens array with metadata (name, szDecimals, weiDecimals, tokenId, isCanonical) and a universe array of trading pair definitions.

Order Books and Open Positions

get_order_book requires a symbol string (e.g., BTC, ETH) and returns 20 levels of bids and asks via the levels field — two arrays each containing objects with px (price), sz (size), and n (number of orders). Timestamps are provided in milliseconds. get_trader_open_positions takes an Ethereum wallet address and returns assetPositions, marginSummary, crossMarginSummary, and withdrawable USD — giving a full margin account snapshot for any on-chain address.

Delta-Neutral Strategy Detection

identify_delta_neutral_traders analyzes the top 3 traders by volume for a given time window, cross-referencing their perpetual and spot holdings to find offsetting positions. Results include an offsets array per trader, where each entry specifies coin, perp_size, spot_size, net_delta, and hedge_ratio. Only positions with a hedge ratio above 20% are flagged. The endpoint may return an empty array if no qualifying delta-neutral setups are found among the analyzed accounts.

Common use cases
  • Track top trader PNL and ROI across different time windows to build a copy-trading signal feed.
  • Monitor live funding rates and open interest across all perp markets to detect funding arbitrage opportunities.
  • Pull 20-level order book depth for a specific symbol to feed into a market microstructure analysis tool.
  • Retrieve open positions for a wallet address to audit a portfolio's margin utilization and cross-margin exposure.
  • Identify delta-neutral traders by hedge ratio to study hedging strategies used by high-volume accounts.
  • Build a leaderboard dashboard filtered by minimum account value using the min_value parameter.
  • Compare spot token metadata against perp market listings to detect newly listed or delisted assets.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Hyperliquid have an official public developer API?+
Yes. Hyperliquid provides a public API documented at https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api. It covers exchange info, order placement, and account state. This Parse API focuses specifically on leaderboard data, market feeds, order books, and delta-neutral position analysis.
How does the leaderboard endpoint handle large result sets?+
The get_leaderboard endpoint returns up to approximately 12,000 trader rows in a single response — the cap reflects response size constraints. There is no cursor-based pagination; if you need a smaller set ranked by PNL, use get_top_traders with the limit parameter and your chosen window.
What does the delta-neutral detection actually analyze?+
The identify_delta_neutral_traders endpoint examines the top 3 traders by volume for the specified window and looks for the same asset held in both a perpetual position and a spot position where the two sides partially or fully offset each other. The offsets array returns perp_size, spot_size, net_delta, and hedge_ratio per coin. Only traders with at least one asset exceeding a 20% hedge ratio appear in results.
Does the API cover historical trade history or OHLCV candle data for specific symbols?+
Not currently. The API covers live market snapshots (mark price, funding, open interest), current order book depth, leaderboard PNL windows, and open positions. Historical candlestick or trade history data is not included. You can fork this API on Parse and revise it to add an endpoint targeting historical price data.
Are isolated-margin positions returned separately from cross-margin positions?+
The get_trader_open_positions endpoint returns both a marginSummary (portfolio-wide) and a crossMarginSummary object, along with an assetPositions array. Isolated margin details are reflected within the assetPositions entries, but the endpoint does not currently break out a dedicated isolated-margin summary object. You can fork this API on Parse and revise the endpoint to surface isolated margin fields separately if your use case requires it.
Page content last updated . Spec covers 7 endpoints from app.hyperliquid.xyz.
Related APIs in Crypto Web3See all →
coinbase.com API
Monitor real-time cryptocurrency market movements by viewing top gainers and losers, along with ranked coin listings showing price changes across different time periods. Stay informed on which cryptocurrencies are performing best to make timely investment decisions.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
opensea.io API
Search NFT collections and discover detailed stats, browse individual items, and track collection activity all in one place. Get real-time insights into collection performance and find the NFTs you're looking for on OpenSea.
studio.glassnode.com API
Access comprehensive on-chain and market analytics for cryptocurrencies, including asset fundamentals, supply dynamics, futures data, and profit/loss metrics. Search and analyze assets with historical chart data and market overview information to track crypto performance and trends.
polygon.io API
Access real-time and historical market data for stocks, cryptocurrencies, forex, and commodities—including price aggregates, ticker details, and financial statements—all from a single platform. Get the latest market news, check trading status across exchanges, and retrieve comprehensive ticker information to power your investment analysis and trading decisions.