> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ipworld.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Node Status

> Get Tendermint status including node info, pubkey, latest block hash, app hash, block height and time

### Response

<ResponseField name="response" type="object">
  <p>Node status information</p>

  <Expandable title="Properties">
    <ResponseField name="node_info" type="object">
      <p>Node information</p>

      <Expandable title="Properties">
        <ResponseField name="protocol_version" type="object">
          <p>Protocol version info</p>
        </ResponseField>

        <ResponseField name="id" type="string">
          <p>Node ID</p>
        </ResponseField>

        <ResponseField name="network" type="string">
          <p>Network name</p>
        </ResponseField>

        <ResponseField name="version" type="string">
          <p>Tendermint version</p>
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="sync_info" type="object">
      <p>Node synchronization info</p>

      <Expandable title="Properties">
        <ResponseField name="latest_block_hash" type="string">
          <p>Latest block hash</p>
        </ResponseField>

        <ResponseField name="latest_block_height" type="string">
          <p>Latest block height</p>
        </ResponseField>

        <ResponseField name="latest_block_time" type="string">
          <p>Latest block time</p>
        </ResponseField>

        <ResponseField name="catching_up" type="boolean">
          <p>Is node catching up with network</p>
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="validator_info" type="object">
      <p>Validator information</p>
    </ResponseField>
  </Expandable>
</ResponseField>
