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

banner image

Last updated on January 1, 1970

2 min read

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

getBlocks

info-circle-fill

Returns a list of confirmed blocks between two slots

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": "getBlocks",
"params": [122791100, 122791185, null],
"id": "getblock.io"}'

Response

{
    "id": "getblock.io",
    "jsonrpc": "2.0",
    "result": [
        122791100,
        122791101,
        122791102,
        122791103,
        122791105,
        122791106,
        122791107,
        122791108,
        122791113,
        122791114,
        122791184,
        122791185
    ]
}
banner icon

Start Building with GetBlock RPCs for Free