Hyperliquid Spot Tracker — Every Spot Pair Live Price + Vol
Pricing
$1.00 / 1,000 pair trackeds
Hyperliquid Spot Tracker — Every Spot Pair Live Price + Vol
Complete live snapshot of every Hyperliquid spot pair: mid/mark/oracle price, 24h volume, circulating supply, market cap. Complements HL perp data for full picture. Direct from Hyperliquid's free public API. PPE $0.001/pair.
Hyperliquid Spot Tracker — 300+ HLP Spot Trading Pairs, Live Prices & Market Cap
Hyperliquid spot tracker for all 300+ HLP spot market trading pairs — live mid/mark price, 24h volume, 24h change, circulating and total supply, and implied market cap. The fastest way to monitor Hyperliquid DEX data and catch spot breakouts before tokens appear on centralized exchanges. No API key required. Runs on Apify's cloud in seconds — no local infrastructure needed.
Keywords: Hyperliquid spot tracker · HLP spot trading · Hyperliquid DEX data · Hyperliquid spot market · HL token price · spot DEX breakout · HYPE PURR price · Hyperliquid listing
What does the Hyperliquid Spot Tracker do?
The Hyperliquid Spot Tracker queries the Hyperliquid Info API (spotMetaAndAssetCtxs) and returns a normalized snapshot of every spot pair currently trading on the Hyperliquid DEX. Each record includes mid price, mark price, previous-day price, 24-hour volume in USD and base-token units, circulating supply, total supply, and implied market cap. Filters let you narrow to specific symbols, minimum volume thresholds, or minimum market cap — and results are sortable by gainers, losers, volume, or market cap. Because Apify hosts and schedules the actor, you can run recurring sweeps without managing rate limits or server uptime yourself.
Why use the Hyperliquid Spot Tracker?
- HL spot breakouts precede CEX listings. HYPE, PURR, and native ecosystem tokens build price discovery on Hyperliquid's spot market before they reach Binance or Coinbase. Monitoring this feed gives you a structural head start.
- Perp and spot triangulation. Combining this actor with the Hyperliquid Whale Tracker gives full ecosystem coverage — spot momentum plus large-position flow on the perp side.
- New-listing alpha. Diff the pair list between two runs to detect newly-listed tokens the moment they appear — before any aggregator picks them up.
- Cross-venue arbitrage screening. For tokens listed on both Hyperliquid spot and a CEX, compare prices programmatically to surface arb opportunities.
- Ecosystem growth metrics. Rising HL spot volume share relative to perp volume signals genuine on-chain liquidity migration, not just speculative leverage.
How to use the Hyperliquid Spot Tracker
- Open the actor on Apify Store and click Try for free.
- Configure inputs — defaults return the top 100 pairs by 24h volume. Add
symbolsto filter to specific tokens, or setsortBy: "change_24h_desc"to find the day's biggest movers. - Click Start — results are ready in under 30 seconds.
- Access output via the Dataset tab as JSON or CSV, or connect to your pipeline via the Apify API.
- Schedule runs every hour or every 15 minutes using Apify's built-in cron scheduler to build a live Hyperliquid DEX data feed.
Input
| Field | Type | Default | Description |
|---|---|---|---|
symbols | array | all | Filter by base token symbols, e.g. ["HYPE", "PURR"]. Empty = all pairs |
minVolume24hUsd | integer | 10,000 | Skip pairs with less than this USD 24h volume |
minMarketCapUsd | integer | 0 | Skip pairs below this implied market cap |
sortBy | string | volume_24h_desc | volume_24h_desc, market_cap_desc, change_24h_desc, change_24h_asc, symbol_asc |
limit | integer | 100 | Maximum number of pairs returned |
alertChange24hPct | number | 0 | Send Telegram alert when any pair's absolute 24h change reaches this threshold. 0 = disabled |
telegramBotToken | string | — | Telegram bot token for alerts |
telegramChatId | string | — | Telegram chat ID to receive alerts |
Example — Top 20 movers with liquidity filter:
{"sortBy": "change_24h_desc", "minVolume24hUsd": 100000, "limit": 20}
Example — Full liquid spot leaderboard:
{"sortBy": "volume_24h_desc", "limit": 30}
Output
Each item represents one Hyperliquid spot trading pair with price, volume, supply, and market cap.
[{"pair": "HYPE/USDC","pair_index": 0,"base_token": "HYPE","quote_token": "USDC","mid_price": 28.42,"mark_price": 28.43,"prev_day_price": 26.15,"change_24h_pct": 8.68,"volume_24h_usd": 142800000,"volume_24h_base": 5042000,"circulating_supply": 333800000,"total_supply": 1000000000,"market_cap_usd": 9486796000,"is_canonical": true},{"pair": "PURR/USDC","pair_index": 1,"base_token": "PURR","quote_token": "USDC","mid_price": 0.0094,"mark_price": 0.0094,"prev_day_price": 0.0089,"change_24h_pct": 5.62,"volume_24h_usd": 3200000,"volume_24h_base": 340400000,"circulating_supply": 499000000000,"total_supply": 500000000000,"market_cap_usd": 4690000,"is_canonical": true}]
Data fields
| Field | Type | Description |
|---|---|---|
pair | string | Trading pair in BASE/QUOTE format |
pair_index | integer | Hyperliquid internal asset index |
base_token | string | Base token symbol |
quote_token | string | Quote token (typically USDC) |
mid_price | number | Mid-market price (best bid/ask average) |
mark_price | number | Hyperliquid mark price |
prev_day_price | number | Previous day's closing price for 24h change calculation |
change_24h_pct | number | Percentage price change over past 24 hours |
volume_24h_usd | number | 24-hour notional volume in USD |
volume_24h_base | number | 24-hour volume in base token units |
circulating_supply | number | Circulating token supply |
total_supply | number | Maximum total token supply |
market_cap_usd | number | Implied market cap (mid price x circulating supply) |
is_canonical | boolean | Whether this is the canonical/primary listing for the token |
Cost estimation
This actor uses Pay-Per-Event (PPE) pricing — you pay only for pairs returned.
| Use case | Pairs returned | Estimated cost |
|---|---|---|
| Top 20 movers | 20 | $0.020 |
| Top 100 by volume | 100 | $0.100 |
| Full sweep (~300 pairs) | 300 | $0.300 |
| Specific symbols (10 tokens) | 10 | $0.010 |
Rate: $0.001 per pair returned. A daily full-sweep schedule costs under $10/month.
FAQ
Does this actor require a Hyperliquid API key?
No. The actor uses Hyperliquid's public Info API (POST https://api.hyperliquid.xyz/info) with no authentication. There are no rate limits at typical actor volumes.
How often does Hyperliquid DEX data update? Hyperliquid's API reflects near real-time order book state. The actor fetches data at run time. For a live feed, schedule runs every 5–15 minutes via Apify's built-in scheduler.
Can I detect newly listed tokens automatically?
Yes — request the full pair list in two consecutive runs and diff the pair_index or base_token sets. New entries represent tokens freshly listed on HLP spot markets. This is one of the most common use cases for early-listing alpha.
Disclaimer: This actor fetches publicly available market data from Hyperliquid's API. Nothing in this output constitutes financial advice or a recommendation to trade any token. Market data may lag during periods of extreme volatility. All trading decisions are made at your own risk.
Related Actors
- Hyperliquid Whale Tracker — Monitor large perp positions on the Hyperliquid derivatives side.
- Long-Short OI Aggregator — Compare HL perp positioning against the broader crypto derivatives market.
- Smart Money Wallet Tracker — Track on-chain whale activity for HL-listed tokens.
- CEX Funding Rate Aggregator — Cross-reference spot HL prices with funding rates on Binance, Bybit, and OKX.
Live Sample Run
A real run executed on 2026-06-10 with default inputs:
| Field | Value |
|---|---|
| Items in dataset | 15 |
| Dataset (JSON) | https://api.apify.com/v2/datasets/hI0ygZ64dj7IB5kC1/items?clean=1&format=json |
| Dataset (CSV) | https://api.apify.com/v2/datasets/hI0ygZ64dj7IB5kC1/items?clean=1&format=csv |
| Run summary (KVS) | https://api.apify.com/v2/key-value-stores/2nVsOFrPyB2gBDH2g/records/SUMMARY |
| Run details | https://api.apify.com/v2/actor-runs/g5AETgGcui0NJ0KG6 |