Skip to main content
POST
/
9de47db917d4f69168e3fed02217d15b
minimumLedgerSlot
curl --request POST \
  --url https://nd-326-444-187.p2pify.com/9de47db917d4f69168e3fed02217d15b \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 1,
  "jsonrpc": "2.0",
  "method": "minimumLedgerSlot",
  "params": []
}
'
{
  "jsonrpc": "<string>",
  "id": 123,
  "result": 123
}
The Solana minimumLedgerSlot method returns the lowest slot that the node has information about in its ledger. As validators prune old ledger data, this value increases over time. This method is useful for determining how far back in history a node can serve data.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

This method does not require any parameters.

Response

  • result (integer) — the minimum ledger slot number available on the node.

Use case

A common use case for minimumLedgerSlot is in determining whether a node can serve historical data for a given slot. Before requesting block or transaction data for a specific slot, you can check minimumLedgerSlot to verify the data is still available. This is especially relevant when deciding between a full node and an archive node.

Body

application/json
id
integer
default:1
jsonrpc
string
default:2.0
method
string
default:minimumLedgerSlot
params
array

Response

200 - application/json

Minimum ledger slot

jsonrpc
string
id
integer
result
integer

Minimum ledger slot number

Last modified on April 16, 2026