Consensus & Network
Get Node Status
Get Tendermint status including node info, pubkey, latest block hash, app hash, block height and time
GET
/
status
Copy
curl --request GET \
--url https://story-rpc-001.originstake.com/status
Copy
{
"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?
Copy
curl --request GET \
--url https://story-rpc-001.originstake.com/status
Copy
{
"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": {}
}
}
Assistant
Responses are generated using AI and may contain mistakes.