Gas Tracker

Get Gas Oracle

Returns the current Slow, Normal and Fast gas prices, base and priority fees.

Sample request

https://api.thespectre.io/api
   ?module=gastracker
   &action=gasoracle
   &apikey=YourApiKeyToken

Sample response

{
    "status": "1",
    "message": "OK",
    "result": {
        "gasPrices": {
            "fast": {
                "baseFee": "2558565989",
                "price": "5305908822",
                "priorityFee": "2747342833"
            },
            "normal": {
                "baseFee": "2558565989",
                "price": "3686535382",
                "priorityFee": "1127969393"
            },
            "slow": {
                "baseFee": "2558565989",
                "price": "3267933483",
                "priorityFee": "709367494"
            }
        },
        "lastBlock": "20670327"
    }
}

Last updated