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
limit
integer
max number of burn blocks to fetch
Default:20
Maximum: 30
offset
integer
index of first burn block to fetch
Example:42000
Status code | Description |
---|---|
200 | List of burn blocks |
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
}
]
}