List wallets
Browse and sort the tracked-wallet directory.
/networks/{network}/walletsFilter the wallet directory for trader discovery. The analytics filters (profitSize, style, minWinRate, and the rest) only match wallets that have profile analytics. Send nextCursor back as cursor to page.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Filter by capital class: shrimp, shark, whale. Repeatable.
Filter by directional exposure: long, short, neutral. Repeatable.
Minimum total account value in USD.
Example: 1000000
Maximum total account value in USD.
Filter by profit-size tag. Repeatable. Needs profile analytics.
Example: large
Filter by profit-status tag. Repeatable. Needs profile analytics.
Example: sustained
Filter by trading pace. Repeatable. Needs profile analytics.
Example: swinger
Filter by strategy style. Repeatable. Needs profile analytics.
Example: lowDd
Filter by derived strategy. Repeatable. Needs profile analytics.
Example: lowDd
Minimum win rate percentage. Needs profile analytics.
Example: 60
Maximum drawdown percentage. Needs profile analytics.
Example: 10
Return only wallets re-scanned within the last N hours.
Example: 1
Sort field — accountTotalValue, netPnl, roi, volume, winRate, sharpe, maxDrawdown.
Example: roi
Sort direction — desc (default) or asc.
Example: desc
Maximum results per page. Default 25, hard cap 200.
Example: 25
Cursor value from the previous page's nextCursor field.
Responses
200OK
Paginated list of wallets matching the filters.
Matching wallets for this page.
Wallet address.
Human label if DexHunt has one.
Classification tags (capital and quality tiers).
Linked KOL identities, empty when none.
Primary KOL profile if the wallet is a known influencer.
Derived capital class — shrimp, shark, or whale.
Net directional exposure — long, short, or neutral.
Total account value in USD.
Sum of open position notional in USD.
Notional held long.
Notional held short.
Account-level leverage ratio.
Number of currently open positions.
Snapshot timestamp.
Net PnL from profile analytics.
Total PnL from profile analytics.
Return on investment percentage.
Traded volume in USD.
Number of closed positions.
Win rate percentage.
Spot balances value in USD.
Perpetual account value in USD.
Sharpe ratio.
Maximum drawdown percentage.
Profit-size tag.
Profit-status tag.
Trading pace tag.
Strategy style tag.
Derived strategy style.
Confidence score for the strategy label (0–1).
Cursor for the next page, or null at the end.
Total wallets matching the filters.
Always scanned_wallets for this endpoint.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/wallets?size=whale&direction=long&sort=roi&order=desc&limit=2" \
-H "X-API-Key: hlsk_your_developer_key"{
"items": [
{
"address": "0x1111111111111111111111111111111111111111",
"label": null,
"tags": ["whale", "high_quality"],
"sizeClass": "whale",
"direction": "long",
"accountTotalValue": "12500000.42",
"totalPositionValue": "4200000.00",
"longValue": "4200000.00",
"shortValue": "0",
"leverage": "0.34",
"positions": 3,
"observedAt": "2026-06-12T12:00:00Z",
"netPnl": "820000.12",
"roi": "7.12",
"volume": "98100000.50",
"winRate": "63.50",
"sharpe": "1.48",
"maxDrawdown": "8.20",
"strategy": "lowDd",
"strategyConfidence": "0.82"
}
],
"nextCursor": "2",
"total": 14,
"coverage": "scanned_wallets"
}