Overview
Get detailed market information for a specific trading pair including current price, funding rates, open interest, and volume metrics.This endpoint does not require authentication and can be accessed publicly.
Path Parameters
string
required
Trading pair symbol.Supported values: “BTC-USD”, “ETH-USD”, “SOL-USD”, “BNB-USD”, “XRP-USD”, “HYPE-USD”
Example: “BTC-USD”
Example: “BTC-USD”
Response Fields
boolean
Indicates if the request was successful
string
Success or error message
object
Market data object containing:
symbol: Trading pair symbolcurrent_price: Current mark price (string)funding_rate: Funding rate information:long_rate: Hourly funding rate for longs (negative = paying)short_rate: Hourly funding rate for shorts (negative = paying)next_update: ISO timestamp of next funding update
open_interest: Open interest breakdown:long_oi: Total long open interest in USDshort_oi: Total short open interest in USDtotal_oi: Combined open interestskew: Market skew (-1 to 1, positive = more longs)
volume: Trading volume metrics:volumeUsd24h: 24-hour trading volume in USDvolume_1h: 1-hour trading volume in USDtrades_24h: Number of trades in last 24 hours
position_multiplier: Fee multiplier for position sizelast_updated: ISO timestamp of last update
Market Metrics Explained
Funding Rate
Asymmetric funding rates that balance long and short positions:- Positive skew → Longs pay shorts
- Negative skew → Shorts pay longs
- Rates update hourly at the top of each hour
Open Interest Skew
- Range: -1 (all shorts) to +1 (all longs)
- 0 = Perfectly balanced market
- Affects funding rate calculations
Position Multiplier
Market-specific fee multiplier applied to position size:Data Sources
- Price Data: Real-time from HyperLiquid WebSocket
- Open Interest: Aggregated from all open positions
- Volume: Rolling 24-hour and 1-hour windows
- Funding Rates: Calculated hourly based on skew
Caching
Market data is cached for 1 second to handle high-frequency requests while maintaining real-time accuracy.Error Responses
object
Market not found or not whitelisted
object
Failed to retrieve market data
Related Endpoints
- Get Markets - List all available markets
- Funding Rates - Historical funding data
- Open Interest - Detailed OI metrics