v1
latestOpenAPI 3.0.32026-07-2618063.1 KBGet Wallet
Fetches wallet information by providing either an EOA (Externally Owned Account) address, a proxy wallet address, or a user handle. Returns the associated EOA, proxy, wallet type, handle, pseudonym, and profile image. Optionally returns trading metrics when with_metrics=true.
Query parameters
EOA (Externally Owned Account) wallet address. Either eoa, proxy, or handle must be provided, but not more than one.
Proxy wallet address. Either eoa, proxy, or handle must be provided, but not more than one.
User handle/username. Accepts both formats: username or @username (the @ prefix will be automatically stripped). Either eoa, proxy, or handle must be provided, but not more than one.
Whether to include wallet trading metrics (total volume, trades, and markets). Pass true to include metrics. Metrics are computed only when explicitly requested for performance reasons.
Optional start date for metrics calculation (Unix timestamp in seconds). Only used when with_metrics=true.
Optional end date for metrics calculation (Unix timestamp in seconds). Only used when with_metrics=true.
Response
Wallet information response
Example response
{
"eoa": "0xe9a69b28ffd86f6ea0c5d8171c95537479b84a29",
"proxy": "0x60881d7dce725bfb0399ee0b11cc11f5782f257d",
"wallet_type": "safe",
"handle": "satoshi",
"pseudonym": "Satoshi Nakamoto",
"image": "https://example.com/avatar.png",
"wallet_metrics": {
"total_volume": 150000.5,
"total_trades": 450,
"total_markets": 25,
"highest_volume_day": {
"date": "2025-10-12",
"volume": 25000.75,
"trades": 145
},
"merges": 262,
"splits": 31,
"conversions": 4,
"redemptions": 2338
}
}