Binancecoin Tutorial to get BEP-20 token balance of an address
To query the balance of BEP-20 tokens, you need a valid Binancecoin address. With this tutorial you can easily query the balance of the respective Binancecoin address. We have written a detailed tutorial for this purpose. Read more.
Prerequisites
- Basic knowledge of PHP
- Account at Chaingateway.io
- A local or remote machine with PHP7 and installed modules JSON and CURL
The Code
$binancecoinaddress, "contractaddress" => $contractaddress) );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $payload );
curl_setopt( $ch, CURLOPT_HTTPHEADER, array("Content-Type:application/json", "Authorization: " . $apikey));
# Return response instead of printing.
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
# Send request.
$result = curl_exec($ch);
curl_close($ch);
# Decode the received JSON string
$resultdecoded = json_decode($result, true);
# Print the Token balance to the screen
echo $resultdecoded["balance"];
?>
Code Modifications
- Replace “YOURAPIKEY” in line 3 of above code with the API Key in your Chaingateway.io Account Panel.
- Replace “ethereumaddress” in line 4 of above code with the Binancecoin address you want to get the balance of.
- Replace “contractaddress” in line 5 of above code with the smart contract address of the Token
Final Steps
- Upload the code above to your local or remote machine
- Call the script by navigating to your favorite browser and entering the URL
- After a few seconds, the script will return a balance.
Congratulations! You just checked the Token balance of a Binancecoin address.
If you want to automatically receive notifications on deposits and withdrawals, please check out this tutorial about IPN for BEP-20 Token.