Read network overview
Everything a home dashboard needs in one call.
/networks/{network}/overviewReturns top gainers, liquidation summaries, top traders, and recent whale moves in one call, sized for a home screen.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Responses
200OK
Network snapshot with top gainers, liquidations, top traders, and recent whale moves.
Number of wallet addresses indexed on the network.
Total account value across indexed wallets in USD.
Aggregate market long/short notional.
Total notional held long in USD.
Total notional held short in USD.
Top-gaining assets with market stats.
Asset symbol.
Current price.
24-hour price change percentage.
24-hour traded volume in USD.
Open interest in USD.
Current funding rate.
Number of wallets long.
Number of wallets short.
Ratio of long to short positions.
Total liquidation value in USD.
Long-side liquidation value in USD.
Short-side liquidation value in USD.
Largest recent liquidations.
Asset symbol.
Liquidated side — long or short.
Liquidation price when available.
Liquidation value in USD.
Top traders for the network, empty when unavailable.
Recent whale position moves, empty when unavailable.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/overview" \
-H "X-API-Key: hlsk_your_developer_key"{
"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": []
}