Tokens
Get ERC20-Token TotalSupply (aka MaxSupply) by ContractAddress
Returns the current amount of an ERC-20 token in circulation.
https://api.btrscan.com/scan/api
?module=token
&action=tokensupply
&contractaddress=0xfe9f969faf8ad72a83b761138bf25de87eff9dd2
Try this endpoint in your browser 🔗
- Request
- Response
Query Parameters
Parameter | Description |
---|---|
contractaddress | the contract address of the ERC-20 token |
Sample Response
{
"status": "1",
"message": "OK",
"result": "20000000000"
}
The result is returned in the token's smallest decimal representation
Eg. a token with a balance of 215.241526476136819398 and 18 decimal places will be returned as 215241526476136819398
Get ERC20-Token Account Balance for TokenContractAddress
Returns the current balance of an ERC-20 token of an address.
https://api.btrscan.com/scan/api
?module=account
&action=tokenbalance
&contractaddress=0xfe9f969faf8ad72a83b761138bf25de87eff9dd2
&address=0x718e5b4f5b007bceb7ad6ce8c2629cea767fc4ec
Try this endpoint in your browser 🔗
- Request
- Response
Query Parameters
Parameter | Description |
---|---|
contractaddress | the contract address of the ERC-20 token |
address | the string representing the address to check for token balance |
Sample Response
{
"status": "1",
"message": "OK",
"result": 0
}