LogoLogo
HomeTwitterKnowledge BaseAPI PRO
BaseScan
BaseScan
  • 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
    • BaseScan API PRO
    • API PRO Endpoints
  • 🤝Support
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Common Verification Errors
    • Getting Help
  • Visit BaseScan.org
Powered by GitBook
On this page
  • Get Total Supply of Ether
  • Get Ether Last Price
  • Get Daily Average Gas Limit
  • Get Base Daily Total Gas Used
  • Get Daily Average Gas Price
  • Get ETH Historical Price
  • Get Daily Network Transaction Fee
  • Get Daily New Address Count
  • Get Daily Network Utilization
  • Get Daily Transaction Count
  1. API Endpoints

Stats

PreviousTokensNextBaseScan API PRO

Last updated 1 year ago

Get Total Supply of Ether

Returns the current amount of Ether in circulation on the Base chain.

https://api.basescan.org/api
   ?module=stats
   &action=ethsupply
   &apikey=YourApiKeyToken

Try this endpoint in your

No parameters required.

Sample Response

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

Tip : Easily convert Ethereum units using our

Get Ether Last Price

Returns the latest price of 1 ETH.

https://api.basescan.org/api
   ?module=stats
   &action=ethprice
   &apikey=YourApiKeyToken

Try this endpoint in your

Get Daily Average Gas Limit

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

 https://api.basescan.org/api
    ?module=stats
    &action=dailyavggaslimit
    &startdate=2023-08-01
    &enddate=2023-08-02
    &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": "2023-08-01",
      "unixTimeStamp": "1690848000",
      "gasLimit": "30000000"
    },
    {
      "UTCDate": "2023-08-02",
      "unixTimeStamp": "1690934400",
      "gasLimit": "30000000"
    }
  ]
}

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

 https://api.basescan.org/api
    ?module=stats
    &action=dailygasused
    &startdate=2023-08-01
    &enddate=2023-08-02
    &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": "2023-08-01",
      "unixTimeStamp": "1690848000",
      "gasUsed": "38608792398"
    },
    {
      "UTCDate": "2023-08-02",
      "unixTimeStamp": "1690934400",
      "gasUsed": "47317486287"
    }
  ]
}

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

 https://api.basescan.org/api
    ?module=stats
    &action=dailyavggasprice
    &startdate=2023-08-01
    &enddate=2023-08-02
    &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": "2023-08-01",
      "unixTimeStamp": "1690848000",
      "maxGasPrice_Wei": "2000000000051",
      "minGasPrice_Wei": "100",
      "avgGasPrice_Wei": "1192177546"
    },
    {
      "UTCDate": "2023-08-02",
      "unixTimeStamp": "1690934400",
      "maxGasPrice_Wei": "3451000000054",
      "minGasPrice_Wei": "100",
      "avgGasPrice_Wei": "1246498225"
    }
  ]
}

Returns the historical price of 1 ETH.

https://api.basescan.org/api
   ?module=stats
   &action=ethdailyprice
   &startdate=2023-08-01
   &enddate=2023-08-02
   &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-08-01",
      "unixTimeStamp": "1690848000",
      "value": "1872.94"
    },
    {
      "UTCDate": "2023-08-02",
      "unixTimeStamp": "1690934400",
      "value": "1839.06"
    }
  ]
}

Returns the historical amount of transaction fees paid to validators per day.

https://api.basescan.org/api?
   module=stats
   &action=dailytxnfee
   &startdate=2023-08-01
   &enddate=2023-08-02
   &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-08-01",
      "unixTimeStamp": "1690848000",
      "transactionFee_Eth": "0"
    },
    {
      "UTCDate": "2023-08-02",
      "unixTimeStamp": "1690934400",
      "transactionFee_Eth": "0"
    }
  ]
}

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

https://api.basescan.org/api
   ?module=stats
   &action=dailynewaddress
   &startdate=2023-08-01
   &enddate=2023-08-02
   &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-08-01",
      "unixTimeStamp": "1690848000",
      "newAddressCount": 12772
    },
    {
      "UTCDate": "2023-08-02",
      "unixTimeStamp": "1690934400",
      "newAddressCount": 12692
    }
  ]
}

Returns the daily average gas used over gas limit percentage.

https://api.basescan.org/api
   ?module=stats
   &action=dailynetutilization
   &startdate=2023-08-01
   &enddate=2023-08-02
   &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-08-01",
      "unixTimeStamp": "1690848000",
      "networkUtilization": "0.0315"
    },
    {
      "UTCDate": "2023-08-02",
      "unixTimeStamp": "1690934400",
      "networkUtilization": "0.0383"
    }
  ]
}

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

https://api.basescan.org/api
   ?module=stats
   &action=dailytx
   &startdate=2023-08-01
   &enddate=2023-08-02
   &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-08-01",
      "unixTimeStamp": "1690848000",
      "transactionCount": 206671
    },
    {
      "UTCDate": "2023-08-02",
      "unixTimeStamp": "1690934400",
      "transactionCount": 193053
    }
  ]
}

Try this endpoint in your

Get Base 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 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
🔗
browser
🔗
browser
🔗
browser
🔗
📖
🔗
browser
unit converter.
browser