Connection check
verified live · 27h ago
br0ski777-hyperliquid-data
Hyperliquid perp order book, prices, funding, OI, candles. x402 paid.
Tools
3
GitHub stars
—
Installs / wk
—
Licence
MIT
Transport
sse
Last checked
27h ago
Tools & capabilities
3 toolsRead from the running server on 27h ago.
hyperliquid_get_all_markets
Use this when you need a snapshot of all Hyperliquid perpetual markets at once. Returns pricing, funding, and volume data for every listed asset in a single call. POST variant of h… Use this when you need a snapshot of all Hyperliquid perpetual markets at once. Returns pricing, funding, and volume data for every listed asset in a single call. POST variant of hyperliquid_get_all_markets -- same params passed as JSON body instead of query string. 1. markets: array of all listed perp assets 2. Each market contains: coin, midPrice, markPrice, fundingRate, openInterest, volume24h, dayChange 3. totalMarkets: number of listed perp markets 4. timestamp: data timestamp in ISO format Example output: {"markets":[{"coin":"BTC","midPrice":67450,"fundingRate":0.00008,"openInterest":1250000000,"volume24h":3400000000,"dayChange":2.3},{"coin":"ETH","midPrice":3520,"fundingRate":0.00012,"openInterest":890000000,"volume24h":1200000000,"dayChange":1.1}],"totalMarkets":148} Use this FOR screening all Hyperliquid markets, finding highest funding rates, or building a market overview dashboard. Do NOT use for a single coin order book -- use hyperliquid_get_market_data. Do NOT use for spot DEX quotes -- use dex_get_swap_quote. Do NOT use for vault performance -- use hyperliquid_get_vault_data.
hyperliquid_get_candles
coin*limitinterval
Use this when you need historical OHLCV candlestick data for a Hyperliquid perpetual pair. Returns open, high, low, close, volume for the specified interval. POST variant of hyperl… Use this when you need historical OHLCV candlestick data for a Hyperliquid perpetual pair. Returns open, high, low, close, volume for the specified interval. POST variant of hyperliquid_get_candles -- same params passed as JSON body instead of query string. 1. candles: array of OHLCV bars 2. Each candle contains: timestamp, open, high, low, close, volume 3. coin: the coin symbol queried 4. interval: the candle interval used 5. count: number of candles returned Example output: {"coin":"BTC","interval":"1h","count":100,"candles":[{"timestamp":"2026-04-13T10:00:00Z","open":67200,"high":67550,"low":67100,"close":67450,"volume":45000000}]} Use this FOR technical analysis, backtesting strategies, or charting price history on Hyperliquid perps. Do NOT use for real-time order book -- use hyperliquid_get_market_data. Do NOT use for spot DEX quotes -- use dex_get_swap_quote. Do NOT use for whale tracking -- use hyperliquid_track_whale_positions.
hyperliquid_get_market_data
coin*