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