how to get the full token balance of an address BSCSCAN API

5.9k Views Asked by At

I'm working on BSCSCAN API. My goal is to get full balance for a given address as you can see on this page:

https://bscscan.com/tokenholdings?a=0x1c82bdb6a93f50a564155ddbcb9cf1b1a244d169

I checked the documentation on BscScan Website, and it seems I just could get:

-BNB BALANCE (not the full token balance) for a given address

-BALANCE of an address by giving the contract address of a single token While I want to get the full balance for a given address. What is the right endpoints I should use? Thank you in advice.

3

There are 3 best solutions below

0
On

Here is an API route where you just specify the walletAddress, and not the contract address: (It requires a paid bscScan plan.) https://docs.bscscan.com/api-endpoints/tokens#get-address-bep20-token-holding

2
On

This API returns the Value of BNB and not the Value of Tokens in BNB

https://api.bscscan.com/api?module=account&action=balance&address=0x0Bb3A1517624Ff45186Df879E9292f67750F8EB0&apikey=YOURAPIKEYBSCSCAN
0
On

This API returns the token Balance of and address

https://api.bscscan.com/api?module=account&action=tokenbalance&contractaddress=YOURCONTRACTADDRESS&address=YOURADDRESS&tag=latest&apikey=YOURAPIKEY