This page uses machine translation from English, which may contain errors or unclear language. For the most accurate information, please see the original English version. Some content may be in the original English due to frequent updates. Help us improve this page's translation by joining our effort on Crowdin. (Crowdin translation page, Contributing guide)
[Configuration] kaia_clientVersion
Returns the current client version of a Kaia node.
JSONRPC: kaia_clientVersion
Request
- application/json
Body
params array
Responses
- 200
The current client version of a Kaia node.
- application/json
- Schema
- Example (from schema)
Schema
error
object
result string
The current client version of a Kaia node.
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": "Kaia/v0.9.1+3518232250/linux-amd64/go1.11.2"
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io/kaia/clientVersion' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "kaia_clientVersion",
"id": 1,
"jsonrpc": "2.0",
"params": []
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "kaia_clientVersion",
"id": 1,
"jsonrpc": "2.0",
"params": [
null
]
}'
ResponseClear