Endpoints with are under the API Pro subscription. To upgrade your API plan, kindly visit BscScan API Pro.
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 🔗
Sample Response
{
"status":"1",
"message":"OK",
"result":"116487067186500000000000000"
}
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 🔗
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.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
the starting date in yyyy-MM-dd
format, eg. 2021-08-01
the ending date in yyyy-MM-dd
format, eg. 2021-08-28
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.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
the starting date in yyyy-MM-dd
format, eg. 2020-10-01
the ending date in yyyy-MM-dd
format, eg. 2020-10-31
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.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
the starting date in yyyy-MM-dd
format, eg. 2020-10-01
the ending date in yyyy-MM-dd
format, eg. 2020-10-31
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.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
the starting date in yyyy-MM-dd
format, eg. 2021-07-01
the ending date in yyyy-MM-dd
format, eg. 2021-07-28
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 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
the starting date in yyyy-MM-dd
format, eg. 2021-07-01
the ending date in yyyy-MM-dd
format, eg. 2021-07-28
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
}
]
}