> ## Documentation Index
> Fetch the complete documentation index at: https://chainstack-docs-polygon-erigon-trace-deprecation.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# getHighestSnapshotSlot | Solana

> The Solana getHighestSnapshotSlot method returns the highest slot that the node has a snapshot for. Use it on Solana via Chainstack.

# Solana `getHighestSnapshotSlot` method

The Solana `getHighestSnapshotSlot` method returns the highest slot that the node has a snapshot for.

This method provides the highest slot that the node has stored a snapshot for. It is useful for determining the most recent point that the node can be bootstrapped from.

## Parameters

This method does not require any parameters.

## Response

* `value` — the highest slot that the node has a snapshot for.

## Use case

A practical use case for `getHighestSnapshotSlot` is to determine the most recent point that the node can be bootstrapped from. This can be useful for network monitoring tools or other applications that need to display or make use of this information.


## OpenAPI

````yaml openapi/solana_node_api/getHighestSnapshotSlot.json POST /9de47db917d4f69168e3fed02217d15b
openapi: 3.0.0
info:
  title: getHighestSnapshotSlot example
  version: 1.0.0
  description: This is an API example for Solana's getHighestSnapshotSlot.
servers:
  - url: https://nd-326-444-187.p2pify.com
security: []
paths:
  /9de47db917d4f69168e3fed02217d15b:
    post:
      tags:
        - query
      summary: getHighestSnapshotSlot
      operationId: getHighestSnapshotSlot
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  default: 1
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: getHighestSnapshotSlot
                params:
                  type: array
                  default: []
      responses:
        '200':
          description: Highest snapshot slot details
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: integer

````