- Wallet Endpoints
- Holdings
Wallet Endpoints
Holdings
Get current holdings of a wallet address.
GET
/v1/wallets/tracking/holdings
x-invezo-api-key*
curl --request GET \
--url https://api.invezo.com/v1/wallets/tracking/holdings \
--header 'x-invezo-api-key: AUTH_VALUE'
Query Parameters
chainRequired
string
platform to query (valid chains: eth, sol)
addressRequired
string
wallet address (example: 0xd8da6bf26964af9d7eed9e03e53415d37aa96045)
{
"status": "OK",
"request_id": "",
"result_count": 5000,
"data": [
{
"token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"balance": 10.577408
},
{
"token_address": "4cwhQXCVVKBjZvrictrdeeUWo6hyPxZNiDyJHfWLFooU",
"balance": 5.0
},
...
]
}
curl --request GET \
--url https://api.invezo.com/v1/wallets/tracking/holdings \
--header 'x-invezo-api-key: AUTH_VALUE'
{
"status": "OK",
"request_id": "",
"result_count": 5000,
"data": [
{
"token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"balance": 10.577408
},
{
"token_address": "4cwhQXCVVKBjZvrictrdeeUWo6hyPxZNiDyJHfWLFooU",
"balance": 5.0
},
...
]
}