Share your GetBlock experience with other devs and get 5M RPCs

banner image

Last updated on January 1, 1970

2 min read

Method getBlocksWithLimit Solana (SOL)
connect with JSON-RPC protocol

getBlocksWithLimit

info-circle-fill

Returns a list of confirmed blocks starting at the given slot

Parameters

start_slot - u64

first slot, as u64 integer

end_slot - u64

Optional.

last slot, as u64 integer

commitment - object

Optional.

"processed" is not supported. If parameter not provided, the default is "finalized".

Request

curl --location --request POST 'https://sol.getblock.io/mainnet' \ 
--header 'x-api-key: YOUR-API-KEY' \ 
--header 'Content-Type: application/json' \ 
--data-raw '{"jsonrpc": "2.0",
"method": "getBlocksWithLimit",
"params": [5, 10, null],
"id": "getblock.io"}'

Response

{
    "id": "getblock.io",
    "jsonrpc": "2.0",
    "result": [
        122257143,
        122257144,
        122257145,
        122257146,
        122257147,
        122257148,
        122257149,
        122257150,
        122257151,
        122257152
    ]
}
banner icon

Start Building with GetBlock RPCs for Free