DexHunt API
API for Hyperliquid wallet discovery, market analytics, liquidation levels, rankings, and activity data.
What the API provides
DexHunt gives you analytics over Hyperliquid wallets and markets — wallet discovery, positioning, liquidation levels, rankings, and activity. Every request needs a developer token in the X-API-Key header.
Make the first request
Start by listing the available networks. The network id is hyperliquid and sits in the path of every endpoint.
curl -sS "https://api.dexhunt.app/v1/networks" \
-H "X-API-Key: hlsk_your_developer_key"{
"items": [
{
"network": "hyperliquid",
"displayName": "Hyperliquid",
"scanAssetCount": 250
}
],
"nextCursor": null
}Data model
Responses draw on scanned-wallet current state, indexed profile history, and selected live reads from Hyperliquid. A single response can combine all three behind one JSON contract.
Coverage is explicit
Wallet and market aggregates cover scanned wallets, not every wallet on the exchange.
coverage = scanned_wallets
Decimals are strings
Money, prices, PnL, percentages, and other decimal values are returned as JSON strings to preserve precision.
decimal-safe
Nullable means unavailable
Some analytics fields depend on wallet profiles or live upstream data. When the signal is missing, the field is null.
No fake zeroes
Pagination is cursor based
List endpoints use limit plus cursor. Treat cursors as opaque values, not offsets or timestamps you can construct.
items + nextCursor
Choose an API group
Most integrations combine three groups: wallets, markets, and timeseries or rankings.
Wallets
List traders, open a wallet profile, and pull PnL, open positions, fills, funding, and transfers.
Markets
Read market snapshots, scanned wallet positioning, whale positions, and aggregated liquidation levels.
Timeseries
Query candles, open interest, and long-short positioning over supported intervals.
Rankings and activity
Build leaderboards, activity feeds, and overviews from stable endpoints.