DH
2 min read·Updated 2026-06-14

Get market

Single market snapshot for one asset.

GET/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.

Path Params
networkstringrequired

Network identifier. Only hyperliquid is supported.

Example: hyperliquid

assetstringrequired

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.

Schema
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.

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