Get market
Single market snapshot for one asset.
/networks/{network}/markets/{asset}Fetch one market by its asset path parameter. The response shape is the same as a single item from GET /markets.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Canonical asset symbol or network symbol (e.g. BTC, ETH, xyz:SP500).
Example: BTC
Responses
200OK
Single market snapshot with quote, OI, funding, and liquidation data.
Asset symbol.
Current mark price.
24-hour price change percentage.
24-hour traded volume in USD.
Current open interest in USD.
Current funding rate.
Scanned wallets currently long.
Scanned wallets currently short.
Ratio of long to short wallet counts.
Total notional exposed to liquidation in USD.
Long-side notional exposed to liquidation.
Short-side notional exposed to liquidation.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/markets/BTC" \
-H "X-API-Key: hlsk_your_developer_key"{
"symbol": "BTC",
"price": "67000.5",
"change24hPct": "1.42",
"volume24h": "1850000000",
"openInterest": "910000000",
"funding": "0.0000125",
"longCount": 118,
"shortCount": 94,
"longShortRatio": "1.255319",
"totalLiquidationValue": "167973714",
"longLiquidationValue": "111386355",
"shortLiquidationValue": "56587359"
}