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
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
Indicates if the request was successful
Success or error message
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:volume_24h
: 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:Market | Multiplier | Impact on 10B USD Position |
---|---|---|
BTC | 0.000001 | 10x fee multiplier |
ETH | 0.000002 | 20x fee multiplier |
SOL | 0.00001 | 100x fee multiplier |
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
Market not found or not whitelisted
Failed to retrieve market data
Usage Examples
Monitor Market Conditions
Calculate Expected Funding
Related Endpoints
- Get Markets - List all available markets
- Funding Rates - Historical funding data
- Open Interest - Detailed OI metrics