Info
Informations about the node APIs
Node heartbeat
/healthGet node health. Returns empty result (200 OK) on success, no response - in case of an error.
Node Status
/statusGet Tendermint status including node info, pubkey, latest block hash, app hash, block height, current max peer height, and time.
Get block headers (max: 20) for minHeight <= height <= maxHeight.
/blockchainGet block headers for minHeight <= height maxHeight.
If maxHeight does not yet exist, blocks up to the current height will be returned. If minHeight does not exist (due to pruning), earliest existing height will be used.
At most 20 items will be returned. Block headers are returned in descending order (highest first).
Get the header at a specified height
/headerRetrieve the block header corresponding to a specified height.
Get validator set at a specified height
/validatorsGet Validators. Validators are sorted first by voting power (descending), then by address (ascending).
Get Genesis in paginated chunks
/genesis_chunkedGet genesis document in a paginated/chunked format to make it easier to iterate through larger genesis structures.
Get consensus state
/dump_consensus_stateGet consensus state.
Not safe to call from inside the ABCI application during a block execution.
Get consensus state
/consensus_stateGet consensus state.
Not safe to call from inside the ABCI application during a block execution.
Get data about unconfirmed transactions
/num_unconfirmed_txsGet data about unconfirmed transactions
Search for transactions
/tx_searchSearch for transactions w/ their results.
See /subscribe for the query syntax.
Search for blocks by BeginBlock and EndBlock events
/block_searchSearch for blocks by BeginBlock and EndBlock events.
See /subscribe for the query syntax.