Tokens
Returns the current amount of an ERC-20 token in circulation.
https://api-kovan.etherscan.io/api
?module=stats
&action=tokensupply
&contractaddress=0xf3a6679b266899042276804930b3bfbaf807f15b
&apikey=YourApiKeyToken
Request
Response
Query Parameters
Parameter | Description |
---|---|
contractaddress | the contract address of the ERC-20 token |
Sample Response
{
"status":"1",
"message":"OK",
"result":"1000000000000000000000000000"
}
Tip : 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
Returns the current balance of an ERC-20 token of an address.
https://api-kovan.etherscan.io/api
?module=account
&action=tokenbalance
&contractaddress=0x58abe4c13581d907427a1f4017cd1c53ad0fb1e0
&address=0x94e3d92264097a750e7500b6b45545a1a6edd45b
&tag=latest&apikey=YourApiKeyToken
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":"106931327722808978367"
}
Tip : 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
Last modified 1yr ago