DH
3 min read·Updated 2026-06-14

List markets

List all tracked market snapshots with quote, OI, funding, and liquidation data.

GET/networks/{network}/markets

Lists every tracked asset. Use order=asc for ascending order; any other value sorts descending.

Path Params
networkstringrequired

Network identifier. Only hyperliquid is supported.

Example: hyperliquid

Query Params
sortstring

Sort field — volume24h, openInterest, change24hPct, totalLiquidationValue.

Example: openInterest

orderstring

Sort direction — desc (default) or asc.

Example: desc

Responses

200OK

List of all tracked market snapshots.

Schema
itemsobject[]

Tracked market snapshots.

symbolstring

Asset symbol.

pricestring (decimal)

Current mark price.

change24hPctstring (decimal)

24-hour price change percentage.

volume24hstring (decimal)

24-hour traded volume in USD.

openIntereststring (decimal)

Current open interest in USD.

fundingstring (decimal)

Current funding rate.

longCountinteger

Scanned wallets currently long.

shortCountinteger

Scanned wallets currently short.

longShortRatiostring (decimal)

Ratio of long to short wallet counts.

totalLiquidationValuestring (decimal)

Total notional exposed to liquidation in USD.

longLiquidationValuestring (decimal)

Long-side notional exposed to liquidation.

shortLiquidationValuestring (decimal)

Short-side notional exposed to liquidation.

coveragestring

Always scanned_wallets for this endpoint.

400Bad Request
401Unauthorized
404Not Found
500Server Error
Request
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/markets?sort=openInterest&order=desc" \
  -H "X-API-Key: hlsk_your_developer_key"
Response
200 · OK
{
  "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"
}