For the complete documentation index, see llms.txt. This page is also available as Markdown.

chain_getRuntimeVersion - Polkadot

Example code for the chain_getRuntimeVersion JSON RPC method. Complete guide on how to use chain_getRuntimeVersion JSON RPC in GetBlock Web3 documentation.

This method returns the runtime version at a given block. It is a deprecated alias of state_getRuntimeVersion, kept for compatibility.

Parameters

Parameter
Type
Required
Description

at

string

No

Block hash to query at. Defaults to the latest block when omitted

Request

curl --location --request POST 'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0", "method": "chain_getRuntimeVersion", "params": [], "id": "getblock.io"}'
example.js
const response = await fetch('https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
        jsonrpc: '2.0',
        method: 'chain_getRuntimeVersion',
        params: [],
        id: 'getblock.io'
    })
});

const data = await response.json();
console.log(data.result);
example.py
import requests

response = requests.post(
    'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/',
    headers={'Content-Type': 'application/json'},
    json={
        'jsonrpc': '2.0',
        'method': 'chain_getRuntimeVersion',
        'params': [],
        'id': 'getblock.io'
    }
)

print(response.json()['result'])

Response

{
    "id": "getblock.io",
    "jsonrpc": "2.0",
    "result": {
        "specName": "polkadot",
        "implName": "parity-polkadot",
        "authoringVersion": 0,
        "specVersion": 1002000,
        "implVersion": 0,
        "apis": [
            [
                "0xdf6acb689907609b",
                5
            ],
            [
                "0x37e397fc7c91f5e4",
                2
            ]
        ],
        "transactionVersion": 26,
        "stateVersion": 1
    }
}

Response Parameters

Parameter
Type
Description

id

string

Request identifier matching the request

jsonrpc

string

JSON-RPC protocol version ("2.0")

result

object

Runtime version object

Result Object

Field
Type
Description

specName

string

Runtime specification name (polkadot)

implName

string

Runtime implementation name

specVersion

integer

Runtime spec version; increments on a runtime upgrade

transactionVersion

integer

Version of the transaction format

apis

array

Supported runtime API identifiers and their versions

Use Cases

  • Upgrade Detection: Detect runtime upgrades by watching specVersion

  • Compatibility Checks: Confirm supported runtime API versions

  • Legacy Tooling: Support clients that call the chain_ alias

  • Diagnostics: Read the runtime version at a block

Error Handling

Error Code
Message
Description

-32602

Invalid params

A parameter is missing or has the wrong type or format

-32601

Method not found

The method is not available on this endpoint

-32603

Internal error

The node failed to process the request

Library Integration

The idiomatic way to call Polkadot RPC is the Polkadot.js API (@polkadot/api), which connects over WebSocket and exposes the method as api.rpc.state.getRuntimeVersion.

Was this helpful?