Skip to content

Solana method

getVersion

Returns the solana-core version and feature set of the node.

cheapCheap for a provider to serve — no state is read, or one key is.Primary specification (opens in a new tab)

How each provider handles it

This method has not been measured in this window.

It is scheduled but no observation has landed yet.

What it does

Reports the software version behind an endpoint, together with `feature-set` — a numeric identifier of the activated feature bundle the node is running.

Unlike Ethereum's client version string, this one is rarely rewritten by providers, so it is a reasonably reliable view of what software is actually serving.

Returns

Object with solana-core and feature-set.

Try it

Runnable as written, against a keyless public endpoint. Nothing here needs an API key.

Request

curl -s https://api.mainnet-beta.solana.com \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"getVersion"}'

As JSON-RPC

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getVersion"
}

Response

{
  "jsonrpc": "2.0",
  "result": {
    "solana-core": "2.1.11",
    "feature-set": 3271415109
  },
  "id": 1
}

Things that bite

  • A node whose feature-set differs from the cluster's is running a different activation set and can legitimately disagree about transaction outcomes.

Why it is measured

The cheapest Solana call, which makes it the baseline every other Solana latency figure is read against.

Called every 900 seconds per endpoint, with jitter so the fleet does not hit a provider in lockstep.

7d window · generated 2026-08-24 17:25:36 UTC · 0 providers