SOL
POST
GET
Last updated on January 1, 1970
2 min read
Method getBlocksWithLimit undefined ()
connect with JSON-RPC protocol
getBlocksWithLimit
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
]
}
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" }