List markets
List all tracked market snapshots with quote, OI, funding, and liquidation data.
/networks/{network}/marketsLists every tracked asset. Use order=asc for ascending order; any other value sorts descending.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Sort field — volume24h, openInterest, change24hPct, totalLiquidationValue.
Example: openInterest
Sort direction — desc (default) or asc.
Example: desc
Responses
200OK
List of all tracked market snapshots.
Tracked market snapshots.
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.
Always scanned_wallets for this endpoint.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/markets?sort=openInterest&order=desc" \
-H "X-API-Key: hlsk_your_developer_key"{
"items": [
{
"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"
}
],
"coverage": "scanned_wallets"
}