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

# GetVersion

## getVersion RPC Method

Returns the current Solana version running on the node.

<div className="grid grid-cols-2 gap-1 mt-2">
  <div className="col-span-1">
    #### Parameters

    **None**
  </div>

  <div className="col-span-1">
    #### Code Sample

    ```bash theme={"system"}
    curl https://rpc.testnet.soo.network/rpc \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{
      "jsonrpc": "2.0",
      "id": 1,
      "method": "getVersion"
    }'
    ```

    #### Response

    ```json theme={"system"}
    {
      "jsonrpc": "2.0",
      "result": {
        "solana-core": "1.16.0",
        "feature-set": 2094764835
      },
      "id": 1
    }
    ```
  </div>
</div>

#### Result Details

The result is a JSON object containing:

* `solana-core: <string>`
  * Software version of Solana core
  * Provides the specific version of the Solana node software

* `feature-set: <u32>`
  * Unique identifier of the current software's feature set
  * Helps identify specific capabilities and characteristics of the Solana node
