LogoLogo
Blastscan
Blastscan
  • Introduction
  • ✨Getting Started
    • Creating an Account
    • Getting an API key
    • Endpoint URLs
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth/Parity Proxy
    • Tokens
    • Stats
  • 🏆API PRO
    • BlastScan API PRO
    • API Pro Endpoints
  • 🔧Misc Tools & Utilities
    • Libraries
  • 🤝Support
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Getting Help
  • Visit Blastscan.io
Powered by GitBook
On this page
  • Get Total Supply of Ether
  • Get Ether Last Price
  • Get Daily Average Gas Limit
  • Get Blast Daily Total Gas Used
  • Get Daily Average Gas Price
  • Get ETH Historical Price
  • Get Daily New Address Count
  • Get Daily Network Utilization
  • Get Daily Transaction Count
  1. API Endpoints

Stats

PreviousTokensNextBlastScan API PRO

Last updated 9 months ago

Get Total Supply of Ether

Returns the current amount of Ether in circulation excluding ETH2 Staking rewards and EIP1559 burnt fees.

https://api.blastscan.io/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 Ethereum units using our

Get Ether Last Price

Returns the latest price of 1 ETH.

https://api.blastscan.io/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

Get Daily Average Gas Limit

Returns the historical daily average gas limit of the Blast network.

https://api.blastscan.io/api
    ?module=stats
    &action=dailyavggaslimit
    &startdate=2024-05-15
    &enddate=2024-06-01
    &sort=asc
    &apikey=YourApiKeyToken 

Query Parameters

Parameter
Description

startdate

the starting date in yyyy-MM-dd format, eg. 2019-01-31

enddate

the ending date in yyyy-MM-dd format, eg. 2019-02-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": "2024-05-15",
            "unixTimeStamp": "1715731200",
            "gasLimit": "30000000"
        },
        {
            "UTCDate": "2024-05-16",
            "unixTimeStamp": "1715817600",
            "gasLimit": "30000000"
        }

Returns the total amount of gas used daily for transactions on the Blast network.

 https://api.blastscan.io/api
    ?module=stats
    &action=dailygasused
    &startdate=2024-05-15
    &enddate=2024-06-01
    &sort=asc
    &apikey=YourApiKeyToken 

Query Parameters

Parameter
Description

startdate

the starting date in yyyy-MM-dd format, eg. 2019-01-31

enddate

the ending date in yyyy-MM-dd format, eg. 2019-02-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": "2024-05-15",
            "unixTimeStamp": "1715731200",
            "gasUsed": "216133027871"
        },
        {
            "UTCDate": "2024-05-16",
            "unixTimeStamp": "1715817600",
            "gasUsed": "212853974928"
        }
  ]
}

Returns the daily average gas price used on the Blast network.

 https://api.blastscan.io/api
    ?module=stats
    &action=dailyavggasprice
    &startdate=2024-05-15
    &enddate=2024-06-01
    &sort=asc
    &apikey=YourApiKeyToken 

Query Parameters

Parameter
Description

startdate

the starting date in yyyy-MM-dd format, eg. 2019-01-31

enddate

the ending date in yyyy-MM-dd format, eg. 2019-02-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": "2024-05-15",
            "unixTimeStamp": "1715731200",
            "maxGasPrice_Wei": "2869650117713",
            "minGasPrice_Wei": "844850",
            "avgGasPrice_Wei": "143625027"
        },
        {
            "UTCDate": "2024-05-16",
            "unixTimeStamp": "1715817600",
            "maxGasPrice_Wei": "1758913809086",
            "minGasPrice_Wei": "4280350",
            "avgGasPrice_Wei": "125132397"
        }
  ]
}

Returns the historical price of 1 ETH.

https://api.blastscan.io/api
   ?module=stats
   &action=ethdailyprice
   &startdate=2024-05-15
   &enddate=2024-06-01
   &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": "2024-05-15",
            "unixTimeStamp": "1715731200",
            "value": "3033.46"
        },
        {
            "UTCDate": "2024-05-16",
            "unixTimeStamp": "1715817600",
            "value": "2945.17"
        }
  ]
}

Returns the historical number of new Blast Chain addresses created per day.

https://api.blastscan.io/api
   ?module=stats
   &action=dailynewaddress
   &startdate=2024-05-15
   &enddate=2024-06-01
   &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": "2024-05-15",
            "unixTimeStamp": "1715731200",
            "newAddressCount": 21134
        },
        {
            "UTCDate": "2024-05-16",
            "unixTimeStamp": "1715817600",
            "newAddressCount": 15540
        }
  ]
}

Returns the daily average gas used over gas limit percentage.

https://api.blastscan.io/api
   ?module=stats
   &action=dailynetutilization
   &startdate=2024-05-15
   &enddate=2024-06-01
   &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": "2024-05-15",
            "unixTimeStamp": "1715731200",
            "networkUtilization": "0.1685"
        },
        {
            "UTCDate": "2024-05-16",
            "unixTimeStamp": "1715817600",
            "networkUtilization": "0.1660"
        }
  ]
}

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

https://api.blastscan.io/api
   ?module=stats
   &action=dailytx
   &startdate=2024-05-15
   &enddate=2024-06-01
   &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": "2024-05-15",
            "unixTimeStamp": "1715731200",
            "transactionCount": 680865
        },
        {
            "UTCDate": "2024-05-16",
            "unixTimeStamp": "1715817600",
            "transactionCount": 674694
        }

Try this endpoint in your

Get Blast Daily Total Gas Used

Try this endpoint in your

Get Daily Average Gas Price

Try this endpoint in your

Get ETH Historical Price

Try this endpoint in your

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

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
🔗
browser
🔗
browser
🔗
📖
🔗
⏳
browser
unit converter.
browser
Unix timestamp.