TriportRPC

web3_clientVersion

Base / https://triport.io/r/{key}/rpc/base

Minimum tier: Free

Base method guide

Last updated:

Primary records mention this exact method/channel or related source spelling. Stored results/labels and script recipes lack a complete recorded request+successful response pair; no blanket provider availability inferred. No wire evidence for eth_clientVersion; web3_clientVersion recipe is a different spelling (C08). No wire evidence for eth_clientVersion; web3_clientVersion recipe is a different spelling (C08). Availability is the frozen baseline, not deployed readiness. documented is the contract floor; evidence_kind retains unknown/source_summary.

Parameters

This method takes no parameters.

Returns

web3_clientVersion return value
FieldType
clientVersionString

Examples

curl https://triport.io/r/{key}/rpc/base \
  -X POST -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer <api-key>' \
  -d '{"jsonrpc":"2.0","id":1,"method":"web3_clientVersion","params":[]}'
const res = await fetch("https://triport.io/r/{key}/rpc/base", {
  method: "POST",
  headers: { "Content-Type": "application/json", Authorization: "Bearer <api-key>" },
  body: JSON.stringify({
  "jsonrpc": "2.0",
  "id": 1,
  "method": "web3_clientVersion",
  "params": []
}),
});
const data = await res.json();
import requests
resp = requests.post(
    "https://triport.io/r/{key}/rpc/base",
    headers={"Authorization": "Bearer <api-key>"},
    json={"jsonrpc":"2.0","id":1,"method":"web3_clientVersion","params":[]},
)
print(resp.json())

Usage

  1. Transport: HTTP (JSON-RPC).
  2. Chain: Base.
  3. Clusters: mainnet.
  4. Credit cost: 1 per call.

FAQ

What does web3_clientVersion do?
Return the selected node client version.
How many credits does web3_clientVersion cost?
web3_clientVersion costs 1 credit(s) per call on Triport by default.
Is web3_clientVersion available over WebSocket?
web3_clientVersion is an HTTP JSON-RPC method.