Sei — Methods, Information (3/3)
API reference for Sei. All methods ->
Information
status
Retrieves Tendermint status including node info, pubkey, latest block hash, app hash, block height and time.
Parameters
None.
Returns
Status of the node.
Request example
- JSON-RPC
- REST
curl -X POST https://rpc.ankr.com/sei/YOUR_ANKR_API_KEY \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"method": "status",
"params": [],
"id": 1
}'
curl https://rpc.ankr.com/premium-http/sei/YOUR_ANKR_API_KEY/status
Response example
{
"node_info": {
"protocol_version": {
"p2p": "8",
"block": "11",
"app": "0"
},
"id": "f7628f970a504f59954f073d65671001a408b5da",
"listen_addr": "45.250.253.81:29210",
"network": "pacific-1",
"version": "0.35.0-unreleased",
"channels": "40202122233038606162630070717273",
"moniker": "Ankr",
"other": {
"tx_index": "off",
"rpc_address": "tcp://127.0.0.1:29211"
}
},
"application_info": {
"version": "8"
},
"sync_info": {
"latest_block_hash": "567CCF80A233999FBB6CF97B0AA4F8D4FD44A5EDE1AE3C228511D8C98AC62CF2",
"latest_app_hash": "70FFC418FC9780E1075B115AB22441DADB45F1BE67F769642F205D4B6ED67092",
"latest_block_height": "30191943",
"latest_block_time": "2023-10-05T13:18:58.805856021Z",
"earliest_block_hash": "914496D8EAD67328E544949B4C508AB691837901DB676652F89AD60025AEFC06",
"earliest_app_hash": "861D037323EA61AF6AB403C126F6892826B9C44F59ED5FB1568910D6923B67BD",
"earliest_block_height": "29574999",
"earliest_block_time": "2023-10-02T18:51:50.626034842Z",
"max_peer_block_height": "30191926",
"catching_up": false,
"total_synced_time": "0",
"remaining_time": "0",
"total_snapshots": "0",
"chunk_process_avg_time": "0",
"snapshot_height": "0",
"snapshot_chunks_count": "0",
"snapshot_chunks_total": "0",
"backfilled_blocks": "0",
"backfill_blocks_total": "0"
},
"validator_info": {
"address": "2602B589666DD6F3D0FB9DD4414ED39C0FEEE385",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "qvHCe2sqN9VJRl/cDAF36LnNXbktLVR1zqnj0d7zt1I="
},
"voting_power": "0"
}
}