Tokens

Get ERC-20 Token TotalSupply by ContractAddress

Returns the total supply of a ERC-20 token.

https://api.ftmscan.com/api
   ?module=stats
   &action=tokensupply
   &contractaddress=0x841fad6eae12c286d1fd18d1d525dffa75c7effe
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

contractaddress

the contract address of the ERC-20 token

Get ERC-20 Token Account Balance by ContractAddress

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

https://api.ftmscan.com/api
   ?module=account
   &action=tokenbalance
   &contractaddress=8394545019028224261891720
   &address=0x5a411f084faa3259924a4764ff9b090c5780a159
   &tag=latest
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

contractaddress

the contract address of the ERC-20 token

address

the string representing the address to check for token balance

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

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

https://api.ftmscan.com/api
   ?module=stats
   &action=tokensupplyhistory
   &contractaddress=0x9879aBDea01a879644185341F7aF7d8343556B7a
   &blockno=29492602
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

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

Returns the balance of a ERC-20 token of an address at a certain block height.

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

https://api.ftmscan.com/api
   ?module=account
   &action=tokenbalancehistory
   &contractaddress=0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e
   &address=0x1Ae31D4F3A86AD57d7F7133c56684a1210e2F87c
   &blockno=42235183
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

Query Parameters

contractaddress

the contract address of the ERC-20 token

address

the string representing the address to check for balance

blockno

the integer block number for eg. 400000

Returns project information and social media links of an ERC-20/ERC-721 token.

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

https://api.ftmscan.com/api
   ?module=token
   &action=tokeninfo
   &contractaddress=0xe1146b9ac456fcbb60644c36fd3f868a9072fc6e
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

Query Parameters

Parameter

Description

contractaddress

the contract address of the ERC-20/ERC-721 token to retrieve token info

Last updated