🚀 Investors Wanted! 📈

Join us in our journey to innovate blockchain technologies. Let's shape the future together.

Learn More Contact Us
logo

Tutorials

General

PHP

Python

NodeJs

Tutorial to get BSC or BEP20 Token balance with PHP

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.

  1. Basic knowledge of PHP
  2. Account at Chaingateway.io
  3. A local or remote machine with PHP7 and installed modules JSON and CURL

The Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
    
    <?php

    # ----- REPLACE THE VARIABLES BELOW WITH YOUR DATA -----
    $apikey = "YOURAPIKEY";
    $binancecoinaddress = "BINANCECOINADDRESS"; // Binancecoin address you want to get the balance of
    $contractaddress = "CONTRACTADDRESS"; // Smart contract address of the Token
    # -------------------------------------------------------


    
    $ch = curl_init("https://api.chaingateway.io/v2/bsc/balances/".$bscaddress."/erc20/".$contractaddress);


    curl_setopt( $ch, CURLOPT_CUSTOMREQUEST ,  'GET' );
    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);

    echo $result;

Code Modifications

  1. Replace “YOURAPIKEY” in above code with the API Key in your Chaingateway.io Account Panel.
  2. Replace “CONTRACTADDRESS” with the smart contract address of the Token.
  3. Replace “SENDERADDRESS” with the bsc address you want to send from.
  4. Replace “RECEIVERADDRESS” with the receiving bsc address
  5. Replace “PASSWORD” with your password of the bsc address, which you specified when you created the address.
  6. Replace “55.89” with the amount of Tokens you want to send.

Final Steps