DH
3 min read·Updated 2026-06-14

Read whale activity

Recent whale open positions, newest first.

GET/networks/{network}/whale-activity

Recent open positions across tracked whale wallets, newest first.

Path Params
networkstringrequired

Network identifier. Only hyperliquid is supported.

Example: hyperliquid

Query Params
limitinteger

Maximum results per page. Default 25, hard cap 200.

Example: 25

cursorstring

Cursor from the previous page's nextCursor field.

Responses

200OK

Recent open-position observations from tracked whale wallets.

Schema
itemsobject[]

Recent whale open-position observations.

idstring

Stable identifier — address:symbol:direction.

addressstring

Wallet address.

labelstringnullable

Human label if DexHunt has one.

directionstring

Position side — long or short.

symbolstring

Asset symbol.

marginModestringnullable

Margin mode when available.

positionValuestring (decimal)

Position notional in USD.

sizestringnullable

Position size in base units when available.

sizeUnitstringnullable

Unit for size (the base asset).

pricestringnullable

Observed price when available.

atstring (ISO 8601)

Observation timestamp.

nextCursorstringnullable

Cursor for the next page, or null at the end.

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