Get burn blocks
Retrieves a list of recent burn blocks.
GET
/extended/v2/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.mainnet.hiro.so/extended/v2/burn-blocks"
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"
]
}
]
}