Hyperliquid Spot Tracker — Every Spot Pair Live Price + Vol avatar

Hyperliquid Spot Tracker — Every Spot Pair Live Price + Vol

Pricing

$1.00 / 1,000 pair trackeds

Go to Apify Store
Hyperliquid Spot Tracker — Every Spot Pair Live Price + Vol

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.

Pricing

$1.00 / 1,000 pair trackeds

Rating

0.0

(0)

Developer

Hojun Lee

Hojun Lee

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

18 hours ago

Last modified

Categories

Share

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

  1. Open the actor on Apify Store and click Try for free.
  2. Configure inputs — defaults return the top 100 pairs by 24h volume. Add symbols to filter to specific tokens, or set sortBy: "change_24h_desc" to find the day's biggest movers.
  3. Click Start — results are ready in under 30 seconds.
  4. Access output via the Dataset tab as JSON or CSV, or connect to your pipeline via the Apify API.
  5. Schedule runs every hour or every 15 minutes using Apify's built-in cron scheduler to build a live Hyperliquid DEX data feed.

Input

FieldTypeDefaultDescription
symbolsarrayallFilter by base token symbols, e.g. ["HYPE", "PURR"]. Empty = all pairs
minVolume24hUsdinteger10,000Skip pairs with less than this USD 24h volume
minMarketCapUsdinteger0Skip pairs below this implied market cap
sortBystringvolume_24h_descvolume_24h_desc, market_cap_desc, change_24h_desc, change_24h_asc, symbol_asc
limitinteger100Maximum number of pairs returned
alertChange24hPctnumber0Send Telegram alert when any pair's absolute 24h change reaches this threshold. 0 = disabled
telegramBotTokenstringTelegram bot token for alerts
telegramChatIdstringTelegram 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

FieldTypeDescription
pairstringTrading pair in BASE/QUOTE format
pair_indexintegerHyperliquid internal asset index
base_tokenstringBase token symbol
quote_tokenstringQuote token (typically USDC)
mid_pricenumberMid-market price (best bid/ask average)
mark_pricenumberHyperliquid mark price
prev_day_pricenumberPrevious day's closing price for 24h change calculation
change_24h_pctnumberPercentage price change over past 24 hours
volume_24h_usdnumber24-hour notional volume in USD
volume_24h_basenumber24-hour volume in base token units
circulating_supplynumberCirculating token supply
total_supplynumberMaximum total token supply
market_cap_usdnumberImplied market cap (mid price x circulating supply)
is_canonicalbooleanWhether 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 casePairs returnedEstimated cost
Top 20 movers20$0.020
Top 100 by volume100$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.



Live Sample Run

A real run executed on 2026-06-10 with default inputs:

FieldValue
Items in dataset15
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 detailshttps://api.apify.com/v2/actor-runs/g5AETgGcui0NJ0KG6

Feedback

Leave a review on Apify Store