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)
net_networkID
Returns the network identifier (network ID).
JSONRPC: net_networkID
Request
- application/json
Body
params array
Responses
- 200
Returns the network identifier (network ID).
- application/json
- Schema
- Example (from schema)
Schema
error
object
result hex
The integer of the network identifier. "1001" Kaia Kairos testnet."8217" Kaia Cypress mainnet.
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": "1001"
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "net_networkID",
"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": "net_networkID",
"id": 1,
"jsonrpc": "2.0",
"params": [
null
]
}'
ResponseClear