DH
3 min read·Updated 2026-06-14

Read network overview

Everything a home dashboard needs in one call.

GET/networks/{network}/overview

Returns top gainers, liquidation summaries, top traders, and recent whale moves in one call, sized for a home screen.

Path Params
networkstringrequired

Network identifier. Only hyperliquid is supported.

Example: hyperliquid

Responses

200OK

Network snapshot with top gainers, liquidations, top traders, and recent whale moves.

Schema
indexedAddressesinteger

Number of wallet addresses indexed on the network.

totalAccountValuestring (decimal)

Total account value across indexed wallets in USD.

marketLongShortobject

Aggregate market long/short notional.

longNotionalUsdstring (decimal)

Total notional held long in USD.

shortNotionalUsdstring (decimal)

Total notional held short in USD.

topGainersobject[]

Top-gaining assets with market stats.

symbolstring

Asset symbol.

pricestring

Current price.

change24hPctstring

24-hour price change percentage.

volume24hstring

24-hour traded volume in USD.

openIntereststring

Open interest in USD.

fundingstring

Current funding rate.

longCountinteger

Number of wallets long.

shortCountinteger

Number of wallets short.

longShortRatiostring

Ratio of long to short positions.

totalLiquidationValuestring

Total liquidation value in USD.

longLiquidationValuestring

Long-side liquidation value in USD.

shortLiquidationValuestring

Short-side liquidation value in USD.

biggestLiquidationsobject[]

Largest recent liquidations.

symbolstring

Asset symbol.

sidestring

Liquidated side — long or short.

pricestringnullable

Liquidation price when available.

valuestring

Liquidation value in USD.

topTradersobject[]

Top traders for the network, empty when unavailable.

recentWhaleMovesobject[]

Recent whale position moves, empty when unavailable.

400Bad Request
401Unauthorized
404Not Found
500Server Error
Request
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/overview" \
  -H "X-API-Key: hlsk_your_developer_key"
Response
200 · OK
{
  "indexedAddresses": 128450,
  "totalAccountValue": "842000000.50",
  "marketLongShort": {
    "longNotionalUsd": "245000000",
    "shortNotionalUsd": "198000000"
  },
  "topGainers": [
    {
      "symbol": "BTC",
      "price": "67000.5",
      "change24hPct": "1.42",
      "volume24h": "1850000000",
      "openInterest": "910000000",
      "funding": "0.0000125",
      "longCount": 118,
      "shortCount": 94,
      "longShortRatio": "1.255319",
      "totalLiquidationValue": "167973714"
    }
  ],
  "biggestLiquidations": [
    { "symbol": "BTC", "side": "long", "price": null, "value": "111386355" }
  ],
  "topTraders": [],
  "recentWhaleMoves": []
}