Get burn blocks

Retrieves a list of recent burn blocks.

GET

/extended/v2/burn-blocks

Retrieves a list of recent burn blocks.

Query parameters

limitinteger

Max number of burn blocks to fetch

Default: 20Maximum: 30

offsetinteger

Index of first burn block to fetch

Example: 42000
Status codeDescription
200List of burn blocks
curl
curl -X GET "https://api.mainnet.hiro.so/extended/v2/burn-blocks"

GET request that returns burn blocks

Example response
{
  "limit": 30,
  "offset": 0,
  "total": 0,
  "results": [
    {
      "burn_block_time": 0,
      "burn_block_time_iso": "string",
      "burn_block_hash": "string",
      "burn_block_height": 0,
      "stacks_blocks": [
        "string"
      ]
    }
  ]
}