Wallet profile
Indexed profile analytics, or available: false when none exists.
/networks/{network}/wallets/{address}/profileProfile analytics are computed separately from current account state, so a wallet can have one without the other. When no profile has been built for a wallet, the endpoint returns available: false with empty arrays.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Wallet address — 0x followed by 40 lowercase hex characters.
Example: 0x1111111111111111111111111111111111111111
Responses
200OK
Profile analytics including daily PnL series, fills summary, and spot balances.
Whether a profile has been indexed for this wallet.
When the profile snapshot was taken.
7-day trading performance percentage.
Total raw account value in USD.
Total margin currently used.
Cross maintenance margin used.
Daily PnL series.
Calendar day.
PnL for the day in USD.
Cumulative PnL through the day.
Account value at end of day.
Fine-grained PnL series points.
Point kind.
Point timestamp.
Realized PnL at the point.
Daily PnL at the point.
Cumulative PnL at the point.
Unrealized PnL at the point.
Total PnL at the point.
Account value at the point.
Windowed PnL and volume summaries.
Window label such as 7d.
PnL over the window.
Volume over the window.
Aggregate fills summary.
Number of fills.
Realized PnL across fills.
Total fees paid.
Total fill volume.
Timestamp of the most recent fill.
Spot balances held by the wallet.
Spot asset symbol.
Token id when available.
Total balance.
Amount on hold.
Entry notional in USD.
Current value in USD.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/wallets/0x1111111111111111111111111111111111111111/profile" \
-H "X-API-Key: hlsk_your_developer_key"{
"available": true,
"observedAt": "2026-06-12T12:00:00Z",
"tradingPerformance1w": "2.4",
"totalRawUsd": "12500000.42",
"totalMarginUsedUsd": "600000.00",
"crossMaintenanceMarginUsedUsd": "120000.00",
"dailyPnl": [
{
"date": "2026-06-11",
"pnlUsd": "18000.44",
"cumulativePnlUsd": "820000.12",
"accountValueUsd": "12500000.42"
}
],
"pnlSummary": [
{ "window": "7d", "pnlUsd": "96000.12", "volumeUsd": "12500000.00" }
],
"fills": {
"count": 240,
"realizedPnlUsd": "778000.00",
"feesUsd": "9200.11",
"volumeUsd": "98100000.50",
"lastFillAt": "2026-06-12T11:55:00Z"
}
}