Stats

Get Total Supply of FTM on the Fantom blockchain

Returns the current amount of FTM in circulation.

https://api.ftmscan.com/api?
   module=stats
   &action=ftmsupply
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

No parameters required.

Get FTM Last Price

Returns the latest price of 1 FTM.

https://api.ftmscan.com/api
   ?module=stats
   &action=ftmprice
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

No parameters required.

Returns the historical price of 1 FTM.

https://api.ftmscan.com/api
   ?module=stats
   &action=ftmdailyprice
   &startdate=2021-08-01
   &enddate=2021-08-31
   &sort=asc
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

Query Parameters

Parameter

Description

startdate

the starting date in yyyy-MM-dd format, eg. 2021-08-01

enddate

the ending date in yyyy-MM-dd format, eg. 2021-08-28

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Returns the historical amount of transaction fees paid to validators per day.

https://api.ftmscan.com/api?
   module=stats
   &action=dailytxnfee
   &startdate=2020-10-01
   &enddate=2020-10-31
   &sort=asc
   &apikey=YourApiKeyToken 

Try this endpoint in your browser 🔗

Query Parameters

Parameter

Description

startdate

the starting date in yyyy-MM-dd format, eg. 2020-10-01

enddate

the ending date in yyyy-MM-dd format, eg. 2020-10-31

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Returns the historical number of new Fantom addresses created per day.

https://api.ftmscan.com/api
   ?module=stats
   &action=dailynewaddress
   &startdate=2020-10-01
   &enddate=2020-10-31
   &sort=asc
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

Query Parameters

Parameter

Description

startdate

the starting date in yyyy-MM-dd format, eg. 2020-10-01

enddate

the ending date in yyyy-MM-dd format, eg. 2020-10-31

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Returns the number of transactions performed on the Fantom Chain per day.

https://api.ftmscan.com/api
   ?module=stats
   &action=dailytx
   &startdate=2021-07-01
   &enddate=2021-07-31
   &sort=asc
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

Query Parameters

Parameter

Description

startdate

the starting date in yyyy-MM-dd format, eg. 2021-07-01

enddate

the ending date in yyyy-MM-dd format, eg. 2021-07-28

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Last updated