Jump to
Ctrl
+
/

Get Fee Recommendations Solana

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

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.

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 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.

2024-12-12
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
baseFeePerSignature object Required
unit string Required

Unit of the base fee, e.g. lamports

value string Required

Base fee per signature in lamports (currently 5000)

computeUnitPerInstruction object Required
default string Required

Default compute unit limit per instruction (200000)

max string Required

Maximum compute unit limit per transaction (1400000)

priorityFeePerComputeUnit object Required
fast string Required

Recommended fast priority fee per compute unit in micro-lamports (75th percentile across the recent slot window)

slow string Required

Recommended slow priority fee per compute unit in micro-lamports (25th percentile across the recent slot window)

standard string Required

Recommended standard priority fee per compute unit in micro-lamports (50th percentile across the recent slot window)

unit string Required

Unit of priority fees, e.g. microLamports

Credits Cost

Blockchain protocol Credits for 1 Results
Default Cost 378
Kaspa 378
Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "baseFeePerSignature": {
                "unit": "",
                "value": ""
            },
            "computeUnitPerInstruction": {
                "default": "",
                "max": ""
            },
            "priorityFeePerComputeUnit": {
                "fast": "",
                "slow": "",
                "standard": "",
                "unit": ""
            }
        }
    }
}