Get Address Token Balance

Get details of a list of wallets, including their explorer Url & balance

Get Wallets Details API

Use this method if you want to get all tokens of a list of wallet addresses for some desired blockchains. Note that this endpoint is slow since it queries for all tokens an address is holding and balance of each one. We recommend to call the RPC directly or use single token balance method whenever possible.

const walletDetails = await rangoClient.getWalletsDetails({
    walletAddresses: [{
        blockchain: "BSC", 
        address: "0xeb2629a2734e272bcc07bda959863f316f4bd4cf"
    }]
})

Wallets Details Request

  • walletAddresses *

    • Description: List of user wallet addresses for desired blockchains.

Wallets Details Response

  • wallets

    • Description: List of wallets and their assets.

Last updated