> ## 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 Block

> Get block at a specified height

### Query Parameters

<ParamField query="height" type="integer">
  Block height to return. If no height is provided, it will fetch the latest
  block.
</ParamField>

### Response

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

  <Expandable title="Properties">
    <ResponseField name="block_id" type="object">
      <p>Block ID containing hash and parts</p>
    </ResponseField>

    <ResponseField name="block" type="object">
      <p>Block data containing header, data, evidence and last commit</p>

      <Expandable title="Properties">
        <ResponseField name="header" type="object">
          <p>Block header information</p>
        </ResponseField>

        <ResponseField name="data" type="array">
          <p>Transactions in the block</p>
        </ResponseField>

        <ResponseField name="evidence" type="array">
          <p>Evidence of malicious behavior</p>
        </ResponseField>

        <ResponseField name="last_commit" type="object">
          <p>Last block commit information</p>
        </ResponseField>
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>
