Get block by hash

Retrieves block details of a specific block for a given chain height.

GET
/extended/v1/block/{hash}

Get block by hash

Deprecated

This endpoint is deprecated in favor of Get blocks.

Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block ('get_block_list' API) to get your block details.

Status codeDescription
200Block
404Cannot find block with given ID
/extended/v1/block/{hash}
curl -X GET "https://api.hiro.so/extended/v1/block/%7Bhash%7D"

A block

{
  "canonical": true,
  "height": 0,
  "hash": "string",
  "block_time": 0,
  "block_time_iso": "string",
  "index_block_hash": "string",
  "parent_block_hash": "string",
  "burn_block_time": 0,
  "burn_block_time_iso": "string",
  "burn_block_hash": "string",
  "burn_block_height": 0,
  "miner_txid": "string",
  "parent_microblock_hash": "string",
  "parent_microblock_sequence": 0,
  "txs": [
    "string"
  ],
  "microblocks_accepted": [
    "string"
  ],
  "microblocks_streamed": [
    "string"
  ],
  "execution_cost_read_count": 0,
  "execution_cost_read_length": 0,
  "execution_cost_runtime": 0,
  "execution_cost_write_count": 0,
  "execution_cost_write_length": 0,
  "microblock_tx_count": {
    "property1": 0,
    "property2": 0
  }
}