Get Address Token Balance
Get details of a list of wallets, including their explorer Url & balance
Get Wallets Details API
const walletDetails = await rangoClient.getWalletsDetails({
walletAddresses: [{
blockchain: "BSC",
address: "0xeb2629a2734e272bcc07bda959863f316f4bd4cf"
}]
})const response = await axios.get('https://api.rango.exchange/wallets/details', {
params: {
'address': 'BSC.0xeb2629a2734e272bcc07bda959863f316f4bd4cf',
'apiKey': 'c6381a79-2817-4602-83bf-6a641a409e32'
}
});curl --request GET \
--url 'https://api.rango.exchange/wallets/details?address=BSC.0xeb2629a2734e272bcc07bda959863f316f4bd4cf&apiKey=c6381a79-2817-4602-83bf-6a641a409e32' Wallets Details Request
Wallets Details Response
Last updated