Connection check
verified live · 27h ago
hl-spot
Hyperliquid spot tokens, prices, volume, wallet balances. 454 tokens. x402 micropayment.
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_spot_balances
address*
Use this when you need to check spot token balances for a specific wallet address on Hyperliquid L1 DEX. Returns all non-zero spot token holdings with available and held (in-order)… Use this when you need to check spot token balances for a specific wallet address on Hyperliquid L1 DEX. Returns all non-zero spot token holdings with available and held (in-order) amounts. Returns for each balance: 1. coin: token symbol 2. token: token index in spot registry 3. total: total balance (hold + available) as string 4. hold: amount currently held in open orders 5. available: amount available for trading or withdrawal 6. entryNtl: entry notional value in USDC Input: wallet address (0x... format, 42 characters). Example output: { address: "0xabc...", balances: [{ coin: "PURR", total: "15000", hold: "5000", available: "10000", entryNtl: "350.50" }], count: 3 } Use this to check what spot tokens a Hyperliquid wallet holds before executing trades or analyzing portfolios. Do NOT use for perps positions -- use hyperliquid_get_perp_positions instead. Do NOT use for cross-chain wallet balances -- use wallet_get_portfolio instead. Do NOT use for Hyperliquid vault balances -- use hyperliquid_get_vaults instead. Do NOT use for EVM token balances -- use token_get_balance instead.
hyperliquid_get_spot_markets
sort
Use this when you need live spot market data from Hyperliquid DEX: prices, 24h volume, and trading activity for all spot pairs. Returns merged token metadata + real-time market con… Use this when you need live spot market data from Hyperliquid DEX: prices, 24h volume, and trading activity for all spot pairs. Returns merged token metadata + real-time market context for every active spot market. Returns for each market: 1. name: token name (e.g. "PURR/USDC") 2. coin: base token symbol 3. tokenId: unique token identifier 4. markPx: current mark/mid price in USDC 5. midPx: mid price between best bid and ask 6. prevDayPx: previous day closing price 7. dayNtlVlm: 24h notional volume in USDC 8. change24h: percentage price change over 24 hours Sortable by: "volume" (default, highest 24h volume first), "change" (biggest movers first), "name" (alphabetical). Example output: { markets: [{ name: "PURR/USDC", markPx: "0.0234", dayNtlVlm: "1250000", change24h: 5.32 }], count: 120 } Use this to find trending spot tokens, check current prices, or scan for high-volume trading opportunities on Hyperliquid. Do NOT use for perps/futures markets -- use hyperliquid_get_perp_markets instead. Do NOT use for CoinGecko prices -- use token_get_price instead. Do NOT use for funding rates -- use hyperliquid_get_funding_rates instead. Do NOT use for historical OHLCV candles -- use token_get_ohlcv instead.
hyperliquid_list_spot_tokens
search