Gas Tracker

Get Gas Oracle

Returns the current Safe, Proposed and Fast gas prices.

https://api.bscscan.com/api
   ?module=gastracker
   &action=gasoracle
   &apikey=YourApiKeyToken 

Try this endpoint in your browser 🔗

No parameters required.

Returns the historical daily average gas limit of the BNB Smart Chain network.

 https://api.bscscan.com/api
    ?module=stats
    &action=dailyavggaslimit
    &startdate=2021-08-01
    &enddate=2021-08-28
    &sort=asc
    &apikey=YourApiKeyToken 

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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

Returns the total amount of gas used daily for transctions on the BNB Smart Chain network.

 https://api.bscscan.com/api
    ?module=stats
    &action=dailygasused
    &startdate=2021-02-01
    &enddate=2021-02-28
    &sort=asc
    &apikey=YourApiKeyToken 

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

startdate

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

enddate

the ending date in yyyy-MM-dd format, eg. 2021-02-28

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Returns the daily average gas price used on the BNB Smart Chain network.

 https://api.bscscan.com/api
    ?module=stats
    &action=dailyavggasprice
    &startdate=2021-02-01
    &enddate=2021-02-28
    &sort=asc
    &apikey=YourApiKeyToken 

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

startdate

the starting date in yyyy-MM-dd format, eg. 2021-02-01

enddate

the ending date in yyyy-MM-dd format, eg. 2021-02-28

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Last updated