Solana RPC · Network & cluster
POST getSlotLeaders
Slot leaders for a slot range.
Endpoint
POST https://solrpc.infinityblocks.io/<API_KEY>
Standard Solana JSON-RPC 2.0 over HTTP POST. The API key is part of the URL path.
Parameters
| Param | Type | Required | Description |
|---|---|---|---|
startSlot | number | yes | First slot. |
limit | number | yes | How many leaders (≤5000). |
Request
curl -s https://solrpc.infinityblocks.io/<API_KEY> \
-X POST -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"getSlotLeaders","params":[423214981,5]}'
Response
{ "jsonrpc": "2.0", "id": 1, "result": [ "4ENNdRkW…", "4ENNdRkW…", "8Pep3GmY…", "8Pep3GmY…", "8Pep3GmY…" ] }
Try it
Run getSlotLeaderslive · POST
Replace placeholders (e.g. <ADDRESS>) with real values. Your key is stored only in this browser.
—