Stats
Endpoints with are under the API Pro subscription. To upgrade your API plan, kindly visit Etherscan API Pro.
Get Total Supply of Ether
Returns the current amount of Ether in circulation excluding ETH2 Staking rewards and EIP1559 burnt fees.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=ethsupply
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
No parameters required.
Get Total Supply of Ether 2
Returns the current amount of Ether in circulation, ETH2 Staking rewards, EIP1559 burnt fees, and total withdrawn ETH from the beacon chain.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=ethsupply2
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
No parameters required.
Get Native Token Last Price
Returns the latest price of the native/gas token, eg ETH for Ethereum, BNB for BSC and POL for Polygon.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=ethprice
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
No parameters required.
Get Ethereum Nodes Size
Returns the size of the Ethereum blockchain, in bytes, over a date range.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=chainsize
&startdate=2019-02-01
&enddate=2019-02-28
&clienttype=geth
&syncmode=default
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
startdate
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
enddate
the ending date in yyyy-MM-dd
format, eg. 2019-02-28
clienttype
the Ethereum node client to use, either geth
or parity
syncmode
the type of node to run, either default
or archive
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descending
Get Total Nodes Count
Returns the total number of discoverable Ethereum nodes.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=nodecount
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
No parameters required.
Get Daily Network Transaction Fee 

Returns the amount of transaction fees paid to miners per day.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=dailytxnfee
&startdate=2019-02-01
&enddate=2019-02-28
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
No parameters required.
Get Daily New Address Count 

Returns the number of new Ethereum addresses created per day.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=dailynewaddress
&startdate=2019-02-01
&enddate=2019-02-28
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
startdate
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
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
Get Daily Network Utilization 

Returns the daily average gas used over gas limit, in percentage.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=dailynetutilization
&startdate=2019-02-01
&enddate=2019-02-28
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
startdate
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
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
Get Daily Average Network Hash Rate 

Returns the historical measure of processing power of the Ethereum network.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=dailyavghashrate
&startdate=2019-02-01
&enddate=2019-02-28
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
startdate
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
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
Get Daily Transaction Count 

Returns the number of transactions performed on the Ethereum blockchain per day.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=dailytx
&startdate=2019-02-01
&enddate=2019-02-28
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
startdate
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
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
Get Daily Average Network Difficulty 

Returns the historical mining difficulty of the Ethereum network.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=dailyavgnetdifficulty
&startdate=2019-02-01
&enddate=2019-02-28
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
startdate
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
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
Get Ether Historical Price 

Returns the historical price of 1 ETH.
https://api.etherscan.io/v2/api
?chainid=1
&module=stats
&action=ethdailyprice
&startdate=2019-02-01
&enddate=2019-02-28
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
startdate
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
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
Last updated