Jump to
Ctrl
+
/

Get EIP 1559 Fee Recommendations

GET
/blockchain-tools/{blockchain}/{network}/fees/eip1559

Through this endpoint customers can obtain fee recommendations specifically for EIP 1559.

Path Parameters

network string Required

Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while network like "testnet" is a test network.

blockchain string Required

Represents the specific blockchain protocol name, e.g. Ethereum.

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2023-04-25
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
item object Required
lastBlock integer Required

Numeric representation of the block height

19269503
baseFeePerGas object Required
unit string Required

Represents the unit of the base fee per gas.

WEI
value string Required

Represents the expected base fee per gas of the upcoming block, calculated from the previous block data.

45265143502
maxFeePerGas object Required
fast string Required

Represents the fast maximum fee per gas, calculated from unconfirmed transactions.

75235090892
slow string Required

Represents the slow maximum fee per gas, calculated from unconfirmed transactions.

67416761254
standard string Required

Represents the standard maximum fee per gas, calculated from unconfirmed transactions.

69996407508
unit string Required

Represents the unit of the maximum fee per gas.

WEI
maxPriorityFeePerGas object Required
fast string Required

Represents the fast maximum priority fee per gas, calculated from unconfirmed transactions.

47085140300
slow string Required

Represents the slow maximum priority fee per gas, calculated from unconfirmed transactions.

37331114417
standard string Required

Represents the standard maximum priority fee per gas, calculated from unconfirmed transactions.

41987372497
unit string Required

Represents the unit of the maximum priority fee per gas.

WEI

Credits Cost : 500 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2023-04-25",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "lastBlock": 19269503,
            "baseFeePerGas": {
                "unit": "WEI",
                "value": "45265143502"
            },
            "maxFeePerGas": {
                "fast": "75235090892",
                "slow": "67416761254",
                "standard": "69996407508",
                "unit": "WEI"
            },
            "maxPriorityFeePerGas": {
                "fast": "47085140300",
                "slow": "37331114417",
                "standard": "41987372497",
                "unit": "WEI"
            }
        }
    }
}