Read whale activity
Recent whale open positions, newest first.
/networks/{network}/whale-activityRecent open positions across tracked whale wallets, newest first.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Maximum results per page. Default 25, hard cap 200.
Example: 25
Cursor from the previous page's nextCursor field.
Responses
200OK
Recent open-position observations from tracked whale wallets.
Recent whale open-position observations.
Stable identifier — address:symbol:direction.
Wallet address.
Human label if DexHunt has one.
Position side — long or short.
Asset symbol.
Margin mode when available.
Position notional in USD.
Position size in base units when available.
Unit for size (the base asset).
Observed price when available.
Observation timestamp.
Cursor for the next page, or null at the end.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/whale-activity?limit=2" \
-H "X-API-Key: hlsk_your_developer_key"{
"items": [
{
"id": "0x1111111111111111111111111111111111111111:BTC:long",
"address": "0x1111111111111111111111111111111111111111",
"label": null,
"direction": "long",
"symbol": "BTC",
"marginMode": null,
"positionValue": "3000000.00",
"size": null,
"sizeUnit": null,
"price": null,
"at": "2026-06-12T12:00:00Z"
}
],
"nextCursor": "2"
}