Get burn blocks

Retrieves a list of recent burn blocks.


GET
/extended/v2/burn-blocks

Get 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
/extended/v2/burn-blocks

Terminal
$
curl -X GET "https://api.hiro.so/extended/v2/burn-blocks?limit=20&offset=42000"

GET request that returns burn blocks

{
"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"
],
"avg_block_time": 0,
"total_tx_count": 0
}
]
}