Solana RPC · Blocks & slots
POST getSlot
Current slot the node has processed.
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 |
|---|---|---|---|
config | object | no | commitment. |
Request
curl -s https://solrpc.infinityblocks.io/<API_KEY> \
-X POST -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"getSlot","params":[{"commitment":"confirmed"}]}'
With @solana/web3.js
const slot = await rpc.getSlot();
Response
{ "jsonrpc": "2.0", "id": 1, "result": 423214981 }
Try it
Run getSlotlive · POST
Replace placeholders (e.g. <ADDRESS>) with real values. Your key is stored only in this browser.
—