💎 Ethereum
web3_clientVersion

web3_clientVersion RPC method

Returns

Returns the current client version.

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "erigon/2.42.0/linux-amd64/go1.20.2"
}

Parameters

None

Request

Need RPC API keys?

Get 12.5M archival requests for free today.

POST https://<network>.chainnodes.org/YOUR-API-KEY

Request example

  • HTTPS POST Request with a JSON RPC call in the body

  • Replace YOUR-API-KEY with the API key from your Chainnodes.org Dashboard

  • You can use a different supported network by replacing mainnet

curl https://mainnet.chainnodes.org/YOUR-API-KEY \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":1}'