Skip to main content

getVersionInfo

Version information about the RPC and Captive core. RPC manages its own, pared-down version of Stellar Core optimized for its own subset of needs. we'll refer to this as a "Captive Core" instance.

Params

(0)

Result

(getVersionInfoResult)
version
string

The version of the RPC server.

Example:
27.1.1-7e712815319140618b9be8cf0846701a6f9a2cbe
commitHash
string

The commit hash of the RPC server.

Example:
7e712815319140618b9be8cf0846701a6f9a2cbe
buildTimestamp
string

The build timestamp of the RPC server.

Example:
2026-07-07T21:12:19
captiveCoreVersion
string

The version of the Captive Core.

Example:
stellar-core 27.1.0 (3589a696b0d4ef5a2cf2124e349c671d71886d9c)
protocolVersion
integer

The protocol version.

Example:
27

Example

Example request to the getVersionInfo method

Request

curl -X POST \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 8675309,
"method": "getVersionInfo"
}' \
https://soroban-testnet.stellar.org | jq

Result

{
"jsonrpc": "2.0",
"id": 8675309,
"result": {
"version": "27.1.1-7e712815319140618b9be8cf0846701a6f9a2cbe",
"commitHash": "7e712815319140618b9be8cf0846701a6f9a2cbe",
"buildTimestamp": "2026-07-07T21:12:19",
"captiveCoreVersion": "stellar-core 27.1.0 (3589a696b0d4ef5a2cf2124e349c671d71886d9c)",
"protocolVersion": 27
}
}

Using the Lab

The getVersionInfo method provides version details about the RPC service and its underlying Captive Core—a pared-down, embedded version of Stellar Core optimized specifically for Soroban RPC operations.

This is useful for debugging, support, or ensuring compatibility between different components in your development or production environments.

👉 View Version Info on the Lab

Lab: getVersionInfo