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://namada-rpc-01.originstake.com/status \
--header 'Key: <api-key>'
{
"200": {
"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
}
}
}
Response
curl --request GET \
--url https://namada-rpc-01.originstake.com/status \
--header 'Key: <api-key>'
{
"200": {
"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
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.