Get wallet
Full account state plus open positions for a single wallet address.
/networks/{network}/wallets/{address}Wallet detail returns the directory fields plus free margin, account-level unrealized PnL, ROE, trade count, average margin used ratio, and the list of open positions. Position fields are nullable when the latest profile lacks matching per-position data.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Wallet address — 0x followed by 40 lowercase hex characters.
Example: 0x1111111111111111111111111111111111111111
Responses
200OK
Full wallet detail with open positions.
Wallet address.
Human label if DexHunt has one.
Classification tags.
Linked KOL identities, empty when none.
Primary KOL profile if the wallet is a known influencer.
Derived capital class.
Net directional exposure.
Total account value in USD.
Margin available for new positions.
Sum of open position notional.
Notional held long.
Notional held short.
Account-level leverage ratio.
Number of 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).
Account-level unrealized PnL.
Return on equity percentage.
Lifetime trade count.
Average margin used ratio percentage.
Currently open positions.
Asset symbol of the open position.
Position side — long or short.
Current notional value in USD.
Estimated liquidation price.
When the position snapshot was taken.
Position leverage multiplier.
Position size in base units.
Unit for size (the base asset).
Unrealized PnL in USD.
Unrealized PnL as a percentage.
Average entry price.
Current mark price.
Margin allocated to the position.
Cumulative funding paid (negative) or received.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/wallets/0x1111111111111111111111111111111111111111" \
-H "X-API-Key: hlsk_your_developer_key"{
"address": "0x1111111111111111111111111111111111111111",
"tags": ["whale", "high_quality"],
"sizeClass": "whale",
"direction": "long",
"accountTotalValue": "12500000.42",
"freeMarginAvailable": "8300000.00",
"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",
"uPnl": "42000.40",
"roe": "4.80",
"trades": 240,
"avgMarginUsedRatio": "12.40",
"openPositions": [
{
"symbol": "BTC",
"direction": "long",
"positionValue": "3000000.00",
"liqPrice": "60350.5",
"observedAt": "2026-06-12T12:00:00Z",
"leverage": "5",
"size": "44.75",
"sizeUnit": "BTC",
"uPnl": "38000.10",
"uPnlPct": "6.33",
"entryPrice": "66150.2",
"markPrice": "67000.5",
"margin": "600000.00",
"fundingCost": "-1200.45"
}
]
}