Stats
Compare With EtherScan
Get Daily Network Transaction Fee
β
β
Check Transaction Receipt Status
β
β
Get Daily Network Utilization
β
β
Get Daily Transaction Count
β
β
Get Daily Network Transaction Fee
[https://docs.etherscan.io/api-endpoints/stats-1#get-daily-network-transaction-fee]
Returns the amount of transaction fees paid to miners per day.
https://api.w3w.ai/mantle/v1/developer/api
?module=stats
&action=dailytxnfee
&startdate=2023-10-01
&enddate=2023-10-28
&sort=asc
&apikey=YourApiKeyTokenTry this endpoint in your browser π
https://api.socialscan.io/monad-testnet/v1/developer/api
?module=stats
&action=dailytxnfee
&startdate=2025-02-01
&enddate=2025-03-01
&sort=asc
&apikey=8f9d3e27-a516-4c08-b235-7d94f02ca91bTry this endpoint in your browser π
Query Parameters
startdate
the starting date in yyyy-MM-dd format, eg. 2023-10-01
enddate
the ending date in yyyy-MM-dd format, eg. 2023-10-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-10-01",
"unixTimeStamp": "1696089600",
"transactionFee": "62372246139437036"
},
{
"UTCDate": "2023-10-28",
"unixTimeStamp": "1698422400",
"transactionFee": "129631478633928998"
}
]
}Get Daily New Address Count
[https://docs.etherscan.io/api-endpoints/stats-1#get-daily-new-address-count]
Returns the number of new Ethereum addresses created per day.
Query Parameters
startdate
the starting date in yyyy-MM-dd format, eg. 2023-10-01
enddate
the ending date in yyyy-MM-dd format, eg. 2023-10-28
sort
the sorting preference, use asc to sort by ascending and desc to sort by descending
Sample response
Get Daily Network Utilization
[https://docs.etherscan.io/api-endpoints/stats-1#get-daily-network-utilization]
Returns the daily average gas used over gas limit, in percentage.
Query Parameters
startdate
the starting date in yyyy-MM-dd format, eg. 2023-10-01
enddate
the ending date in yyyy-MM-dd format, eg. 2023-10-28
sort
the sorting preference, use asc to sort by ascending and desc to sort by descending
Sample response
Get Daily Transaction Count
[https://docs.etherscan.io/api-endpoints/stats-1#get-daily-transaction-count]
Returns the number of transactions performed on the Ethereum blockchain per day.
Query Parameters
startdate
the starting date in yyyy-MM-dd format, eg. 2023-10-01
enddate
the ending date in yyyy-MM-dd format, eg. 2023-10-28
sort
the sorting preference, use asc to sort by ascending and desc to sort by descending
Sample response
Last updated
Was this helpful?