Consensus & Network
Get Node Status
Consensus & Network
Get Node Status
Get Tendermint status including node info, pubkey, latest block hash, app hash, block height and time
GET
/
status
curl --request GET \
--url https://story-rpc-001.originstake.com/status
{
"response": {
"node_info": {
"protocol_version": {},
"id": "<string>",
"network": "<string>",
"version": "<string>"
},
"sync_info": {
"latest_block_hash": "<string>",
"latest_block_height": "<string>",
"latest_block_time": "<string>",
"catching_up": true
},
"validator_info": {}
}
}
Response
Node status information
Validator information
Was this page helpful?
curl --request GET \
--url https://story-rpc-001.originstake.com/status
{
"response": {
"node_info": {
"protocol_version": {},
"id": "<string>",
"network": "<string>",
"version": "<string>"
},
"sync_info": {
"latest_block_hash": "<string>",
"latest_block_height": "<string>",
"latest_block_time": "<string>",
"catching_up": true
},
"validator_info": {}
}
}