Skip to main content

Wallets (Legacy)

GET /v0/wallets

Legacy Endpoint

This endpoint will be deprecated. Use V1 endpoints for new integrations. Migrate to V1 when made live.

Retrieve user's cryptocurrency wallets with pagination.

Query Parameters

ParameterTypeDescription
portfolioIdstringFilter by portfolio ID
limitnumberResults per page (1-1000, default: 100)
offsetnumberPagination offset
includeCountbooleanInclude total count

Response

{
"wallets": [
{
"walletId": "wallet_123",
"name": "ethereum_wallet",
"public_name": "My Ethereum Wallet",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"logo_url": "https://example.com/logo.png",
"portfolioId": "portfolio_1",
"portfolioName": "Main Portfolio",
"chain": "ethereum",
"type": "metamask"
}
],
"user_id": "user_123",
"pagination": {
"limit": 20,
"offset": 0,
"returned_count": 15,
"total_count": 42,
"has_more": true
}
}