PolygonScan
HomeTwitterKnowledge Base API PRO
Polygon zkEVM
Polygon zkEVM
  • Introduction
  • ✨Getting Started
    • Creating an Account
    • Getting an API Key
    • Endpoint URLs
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth Proxy
    • Tokens
    • Stats
  • 🤝Support
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Getting Help
  • Visit zkEVM Polygonscan
Powered by GitBook
On this page
  • Get ERC-20 Token TotalSupply by ContractAddress
  • Get ERC-20 Token Account Balance by ContractAddress
  • Get Historical ERC-20 Token TotalSupply by ContractAddress & BlockNo
  1. API Endpoints

Tokens

PreviousGeth ProxyNextStats

Last updated 1 year ago

Get ERC-20 Token TotalSupply by ContractAddress

Returns the total supply of a ERC-20 token.

https://api-zkevm.polygonscan.com/api
   ?module=stats
   &action=tokensupply
   &contractaddress=0x90cc6C10C7211844c66640b4d01486cb45E0F3E8
   &apikey=YourApiKeyToken

Try this endpoint in your

Query Parameters

Parameter
Description

contractaddress

the contract address of the ERC-20 token

Sample Response

{
    "status": "1",
    "message": "OK",
    "result": "21000000000000000000000000"
}

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

Get ERC-20 Token Account Balance by ContractAddress

Returns the current balance of a ERC-20 token of an address.

https://api-zkevm.polygonscan.com/api
   ?module=account
   &action=tokenbalance
   &contractaddress=0x90cc6C10C7211844c66640b4d01486cb45E0F3E8
   &address=0x808081269906e0e01285ed9c3525c67e09811860
   &tag=latest
   &apikey=YourApiKeyToken

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": "21000000000000000000000000"
}

Eg. a token with a balance of 215.241526476136819398 and 18 decimal places will be returned as 215241526476136819398

Returns the historical amount of a ERC-20 token in circulation at a certain block height.

https://api-zkevm.polygonscan.com/api
   ?module=stats
   &action=tokensupplyhistory
   &contractaddress=0x831753dd7087cac61ab5644b308642cc1c33dc13
   &blockno=20071631
   &apikey=YourApiKeyToken

Query Parameters

Parameter
Description

contractaddress

the contract address of the ERC-20 token

blockno

the integer block number to check total supply for eg. 4000000

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":"951911913447326414573422"
}

Eg. a token with a balance of 215.241526476136819398 and 18 decimal places will be returned as 215241526476136819398

Try this endpoint in your

Tip : The result is returned in the token's smallest decimal representation.

Get Historical ERC-20 Token TotalSupply by ContractAddress & BlockNo

Note : This endpoint is throttled to 2 calls/second regardless of API Pro tier.

Try this endpoint in your

Tip : The result is returned in the token's smallest decimal representation.

🎯
📈
📝
📈
🔗
📈
browser
🔗
browser
🔗
browser