Stats

Get Total Supply of AVAX

Returns the current amount of AVAX in circulation.

https://api.snowscan.xyz/api
   ?module=stats
   &action=ethsupply
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

No parameters required.

Get AVAX Last Price

Returns the latest price of 1 AVAX.

https://api.snowscan.xyz/api
   ?module=stats
   &action=ethprice
   &apikey=YourApiKeyToken

Try this endpoint in your browser 🔗

No parameters required.

Returns the historical price of 1 AVAX.

https://api.snowscan.xyz/api
   ?module=stats
   &action=ethdailyprice
   &startdate=2023-4-04
   &enddate=2023-4-05
   &sort=asc
   &apikey=YourApiKeyToken 

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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.snowscan.xyz/api?
   module=stats
   &action=dailytxnfee
   &startdate=2023-4-04
   &enddate=2023-4-05
   &apikey=YourApiKeyToken 
   &sort=asc

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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 Avalanche C-Chain addresses created per day.

https://api.snowscan.xyz/api
   ?module=stats
   &action=dailynewaddress
   &startdate=2023-4-04
   &enddate=2023-4-05
   &sort=asc
   &apikey=YourApiKeyToken 

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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 daily average gas used over gas limit percentage.

https://api.snowscan.xyz/api
   ?module=stats
   &action=dailynetutilization
   &startdate=2023-4-04
   &enddate=2023-4-05
   &sort=asc
   &apikey=YourApiKeyToken 

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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

Returns the number of transactions performed on the Avalanche blockchain per day.

https://api.snowscan.xyz/api
   ?module=stats
   &action=dailytx
   &startdate=2023-4-04
   &enddate=2023-4-05
   &sort=asc
   &apikey=YourApiKeyToken 

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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