Stats
Endpoints with
are under the API Pro subscription. To upgrade your API plan, kindly visit BscScan API Pro.

Returns the current amount of AVAX in circulation.
https://api.snowtrace.io/api
?module=stats
&action=ethsupply
&apikey=YourApiKeyToken
Request
Response
No parameters required.
Sample Response
{
"status":"1",
"message":"OK",
"result":"116487067186500000000000000"
}
Returns the latest price of 1 AVAX.
https://api.snowtrace.io/api
?module=stats
&action=ethprice
&apikey=YourApiKeyToken
Request
Response
No parameters required.
Sample Response
{
"status":"1",
"message":"OK",
"result":{
"ethbtc":"0.06116",
"ethbtc_timestamp":"1624961308",
"ethusd":"2149.18",
"ethusd_timestamp":"1624961308"
}
}
Returns the historical price of 1 AVAX.
https://api.snowtrace.io/api
?module=stats
&action=ethdailyprice
&startdate=2023-4-04
&enddate=2023-4-05
&sort=asc
&apikey=YourApiKeyToken
Request
Response
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 |
Sample Response
{
"status": "1",
"message": "OK",
"result": [
{
"UTCDate": "2023-04-04",
"unixTimeStamp": "1680566400",
"value": "17.65"
},
{
"UTCDate": "2023-04-05",
"unixTimeStamp": "1680652800",
"value": "18.01"
}
]
}
Tip : The
💰
value
is represented in US Dollars ( USD ).Returns the historical amount of transaction fees paid to validators per day.
https://api.snowtrace.io/api?
module=stats
&action=dailytxnfee
&startdate=2023-4-04
&enddate=2023-4-05
&apikey=YourApiKeyToken
&sort=asc
Request
Response
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 |
Sample Response
{
"status": "1",
"message": "OK",
"result": [
{
"UTCDate": "2023-04-04",
"unixTimeStamp": "1680566400",
"transactionFee_Eth": "0"
},
{
"UTCDate": "2023-04-05",
"unixTimeStamp": "1680652800",
"transactionFee_Eth": "0"
}
]
}
Returns the historical number of new Avalanche C-Chain addresses created per day.
https://api.snowtrace.io/api
?module=stats
&action=dailynewaddress
&startdate=2023-4-04
&enddate=2023-4-05
&sort=asc
&apikey=YourApiKeyToken
Request
Response
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 |
Sample Response
{
"status": "1",
"message": "OK",
"result": [
{
"UTCDate": "2023-04-04",
"unixTimeStamp": "1680566400",
"newAddressCount": 63935
},
{
"UTCDate": "2023-04-05",
"unixTimeStamp": "1680652800",
"newAddressCount": 49390
}
]
}
Returns the daily average gas used over gas limit percentage.
https://api.snowtrace.io/api
?module=stats
&action=dailynetutilization
&startdate=2023-4-04
&enddate=2023-4-05
&sort=asc
&apikey=YourApiKeyToken
Request
Response
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 |
Sample Response
{
"status": "1",
"message": "OK",
"result": [
{
"UTCDate": "2023-04-04",
"unixTimeStamp": "1680566400",
"networkUtilization": "0.1416"
},
{
"UTCDate": "2023-04-05",
"unixTimeStamp": "1680652800",
"networkUtilization": "0.1618"
}
]
}
Returns the number of transactions performed on the Ethereum blockchain per day.
https://api.snowtrace.io/api
?module=stats
&action=dailytx
&startdate=2023-4-04
&enddate=2023-4-05
&sort=asc
&apikey=YourApiKeyToken
Request
Response
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 |
Sample Response
{
"status": "1",
"message": "OK",
"result": [
{
"UTCDate": "2023-04-04",
"unixTimeStamp": "1680566400",
"transactionCount": 199183
},
{
"UTCDate": "2023-04-05",
"unixTimeStamp": "1680652800",
"transactionCount": 248041
}
]
}
Last modified 2mo ago