Get recent burnchain reward recipients
Retrieves a list of recent burnchain (e.g. Bitcoin) reward recipients with the associated amounts and block info.
GET
/extended/v1/burnchain/rewards
Retrieves a list of recent burnchain (e.g. Bitcoin) reward recipients with the associated amounts and block info.
Query parameters
limit
integer
Max number of rewards to fetch
Default:96
Maximum: 250
offset
integer
Index of first rewards to fetch
Example:42000
Status code | Description |
---|---|
200 | List of burnchain reward recipients and amounts |
curl -X GET "https://api.mainnet.hiro.so/extended/v1/burnchain/rewards"
GET request that returns blocks
{
"limit": 30,
"offset": 0,
"results": [
{
"canonical": true,
"burn_block_hash": "string",
"burn_block_height": 0,
"burn_amount": "string",
"reward_recipient": "string",
"reward_amount": "string",
"reward_index": 0
}
]
}