> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# getSlot | Solana

> The Solana getSlot method returns the current slot. This method provides the current slot, which is a unit of time in the Solana network.

# Solana `getSlot` method

The Solana `getSlot` method returns the current slot.

This method provides the current slot, which is a unit of time in the Solana network. It is useful for tracking the progress of the network.

See also [Understanding the difference between blocks and slots on Solana](/docs/understanding-the-difference-between-blocks-and-slots-on-solana).

## Parameters

This method does not require any parameters.

## Response

* `value` — the current slot.

## Use case

A practical use case for `getSlot` is to track the progress of the network. 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/getSlot.json POST /9de47db917d4f69168e3fed02217d15b
openapi: 3.0.0
info:
  title: getSlot example
  version: 1.0.0
  description: This is an API example for Solana's getSlot.
servers:
  - url: https://nd-326-444-187.p2pify.com
security: []
paths:
  /9de47db917d4f69168e3fed02217d15b:
    post:
      tags:
        - query
      summary: getSlot
      operationId: getSlot
      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: getSlot
                params:
                  type: array
                  default: []
      responses:
        '200':
          description: Slot details
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: integer

````