Solana Tracker
Solana RPC/Methods

getHighestSnapshotSlot RPC Method

Please note that this method is only available in solana-core v1.9 or newer. Please use getSnapshotSlot for solana-core v1.8

Description

Returns the highest slot that the node has a snapshot for. This will find the highest full snapshot slot, and the highest incremental snapshot slot based on the full snapshot slot, if there is one.

Parameters

None

Returns

The result will be an object with the following fields:

  • full - The highest fullsnapshot slot encoded as 64-bit unsigned integer
  • incremental - The greatest incremental snapshot slot derived from the full snapshot

Code Examples

curl "https://rpc-mainnet.solanatracker.io/?api_key=YOUR_API_KEY_HERE" \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0","id":1, "method":"getHighestSnapshotSlot"}'

On this page