Get Tendermint status including node info, pubkey, latest block hash, app hash, block height and time.
Parameters
None
Result
Status of the node
Example
Request
curl <your-tendermint-endpoint>/status
Return
{
"jsonrpc": "2.0",
"id": -1,
"result": {
"node_info": {
"protocol_version": {
"p2p": "8",
"block": "11",
"app": "0"
},
"id": "7df54a0c4f6c7dd3cd203423c6913353e7340157",
"listen_addr": "tcp://0.0.0.0:26656",
"network": "cosmoshub-4",
"version": "v0.34.14",
"channels": "40202122233038606100",
"moniker": "infstones",
"other": {
"tx_index": "on",
"rpc_address": "tcp://0.0.0.0:26657"
}
},
"sync_info": {
"latest_block_hash": "0522BDD37B318EDE7CCB2656326EE4995C5071AFCF083AF0B767F9FC4527B548",
"latest_app_hash": "3D31A6E537653BEB97C2C098E6DB96AD8CB3FEDEE0729549F82C8D2364E6E003",
"latest_block_height": "11346660",
"latest_block_time": "2022-07-21T06:57:03.439740839Z",
"earliest_block_hash": "1455A0C15AC49BB506992EC85A3CD4D32367E53A087689815E01A524231C3ADF",
"earliest_app_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"earliest_block_height": "5200791",
"earliest_block_time": "2019-12-11T16:11:34Z",
"catching_up": false
},
"validator_info": {
"address": "D27810C2087901B30A9066BDC864D277EA9D85D5",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "8VHUnEYASVEL9mtK4SOSew838joC/YK7npoieg/TnhA="
},
"voting_power": "0"
}
}
}