> ## 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.

# getVersion | Solana

> The Solana getVersion method returns the current Solana version running on the node. Available on Solana via Chainstack JSON-RPC nodes.

The Solana `getVersion` method returns the current Solana version running on the node.

This method is useful for verifying which validator client and version your RPC node is running, which can affect feature availability and behavior.

## Parameters

This method does not require any parameters.

## Response

The response includes a `result` object with:

* `solana-core` (string) — the software version of the Solana node (e.g., `"2.1.10"`).
* `feature-set` (integer) — the unique identifier of the current software's feature set.

## Use case

A common use case for `getVersion` is in infrastructure monitoring to verify that your node is running the expected validator version. This is especially relevant during network upgrades (e.g., Agave 2.0) to confirm your node has updated and supports the latest RPC methods.


## OpenAPI

````yaml openapi/solana_node_api/getVersion.json POST /9de47db917d4f69168e3fed02217d15b
openapi: 3.0.0
info:
  title: getVersion example
  version: 1.0.0
  description: This is an API example for Solana's getVersion.
servers:
  - url: https://nd-326-444-187.p2pify.com
security: []
paths:
  /9de47db917d4f69168e3fed02217d15b:
    post:
      tags:
        - query
      summary: getVersion
      operationId: getVersion
      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: getVersion
                params:
                  type: array
                  default: []
      responses:
        '200':
          description: Version information
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object

````