SOL
POST
GET
Last updated on January 1, 1970
2 min read
Method getBlocks undefined ()
connect with JSON-RPC protocol
getBlocks
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
]
}
Start Building with GetBlock RPCs for Free
Previous
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }
Next
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }