SnowScan
HomeKnowledge Base
SnowScan
SnowScan
  • Introduction
  • ✨Getting Started
    • Creating an Account
    • Getting an API key
    • Endpoint URLs
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth Proxy
    • Tokens
    • Stats
  • 🎯API PRO
    • API PRO
    • API PRO Endpoints
  • 📖Tutorials
    • Verifying Contracts Programmatically
  • 🔧Misc Tools & Utilities
    • Libraries
    • Plugins
  • 🤝Support
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Getting Help
  • Visit SnowScan
Powered by GitBook
On this page
  • Get Total Supply of AVAX
  • Get AVAX Last Price
  • Get AVAX Historical Price
  • Get Daily Network Transaction Fee
  • Get Daily New Address Count
  • Get Daily Network Utilization
  • Get Daily Transaction Count
  1. API Endpoints

Stats

PreviousTokensNextAPI PRO

Last updated 1 year ago

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

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

No parameters required.

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":"116487067186500000000000000"
}

Tip : Easily convert Avalanche units using our

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

No parameters required.

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":{
      "ethbtc":"0.06116",
      "ethbtc_timestamp":"1624961308",
      "ethusd":"2149.18",
      "ethusd_timestamp":"1624961308"
   }
}

Tip : The timestamps are represented in

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 

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"
        }
    ]
}

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

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

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

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 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 

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
        }
    ]
}

Get AVAX Historical Price

Try this endpoint in your

Tip : The value is represented in US Dollars ( USD ).

Get Daily Network Transaction Fee

Try this endpoint in your

Get Daily New Address Count

Try this endpoint in your

Get Daily Network Utilization

Try this endpoint in your

Get Daily Transaction Count

Try this endpoint in your

🎯
💰
🔗
browser
🔗
browser
🔗
browser
🔗
browser
🔗
browser
🔗
📖
🔗
⏳
BscScan API Pro
browser
unit converter.
browser
Unix timestamp.