Jump to
Ctrl
+
/

Get Fee Recommendations

GET
/blockchain-data/{blockchain}/{network}/mempool/fees

Through this endpoint customers can obtain fee recommendations. Our fees recommendations are based on Mempool data which makes them much more accurate than fees based on already mined blocks. Calculations are done in real time live. Using this endpoint customers can get gas price for Ethereum, fee per byte for Bitcoin, etc.

Path Parameters

blockchain string Required

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

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 networks like "testnet", "sepolia" are test networks.

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
unit string Required

Currency unit

BTC
fast string Required

Numeric representation of the fast gas price, calculated from unconfirmed transactions

0.000025
slow string Required

Numeric representation of the slow gas price, calculated from unconfirmed transactions

0.000010
standard string Required

Numeric representation of the standard gas price, calculated from unconfirmed transactions

0.000015
feeCushionMultiplier string Required

Fee cushion multiplier used to multiply the base fee

1.2

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": {
            "unit": "BTC",
            "fast": "0.000025",
            "slow": "0.000010",
            "standard": "0.000015",
            "feeCushionMultiplier": "1.2"
        }
    }
}