getTokenBalances - SDK

Returns the ERC-20 token balances for a specific owner address.

Don’t have an API key?

Start using this method in your app today.

Description

Returns the ERC-20 token balances for a specific owner address.

Parameters

NameTypeDescription
addressOrNamestringThe owner address or ENS name to get the token balances for.
contractAddresses ( optional )arrayList of contract addresses to filter by.

Response

ParameterTypeDescription
Promise<TokenBalancesResponseErc20>objectThe ERC-20 token balances.

TokenBalancesResponseErc20 response object parameters

PropertyTypeDescription
addressstringReturns the value at this storage position.
tokenBalancesarrayreturns an array of token balance objects. Each object contains: contractAddress, tokenBalance: hex-encoded, error, One of tokenBalance or error will be null.
pageKey?stringApplies only to the erc20 request type. An address to be passed into the pageKey of the next request to paginate through an owner's tokens.

Example Request and Response

Prerequisite: You will need to install the Alchemy SDK before making requests with it.

The commands for installing it using npm or yarn are given below:

npm install alchemy-sdk
yarn add alchemy-sdk

Request

Here is an example of how to make a getTokenBalances request using the Alchemy SDK:

// Imports the Alchemy SDK
const { Alchemy, Network } = require("alchemy-sdk");

// Configures the Alchemy SDK
const config = {
    apiKey: "alchemy-replit", // Replace with your API key
    network: Network.ETH_MAINNET, // Replace with your network
};

// Creates an Alchemy object instance with the config to use for making requests
const alchemy = new Alchemy(config);

const main = async () => {
    //Initialize variables for the parameters
    let vitalikAddress = "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045";
    let usdcContract = "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
    
    //Call the method to return the token balances for this address
    let response = await alchemy.core.getTokenBalances(vitalikAddress, [usdcContract])

    //Logging the response to the console
    console.log(response)
};

main();

Response

{
  address: '0xd8da6bf26964af9d7eed9e03e53415d37aa96045',
  tokenBalances: [
    {
      contractAddress: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
      tokenBalance: '0x0000000000000000000000000000000000000000000000000000000002561840'
    }
  ]
}

Code Sandbox

You can test out the getTokenBalances method using the code sandbox below:

Use Cases

For guidance on how to leverage this method, check out the following tutorials:

Related Methods

Here are the methods related to getTokenBalances:

  • getBlock: Returns the block from the network based on the provided block number or hash.
  • getBalance: Returns the balance of a given address as of the provided block.
ReadMe