Get recent burnchain reward recipients

Retrieves a list of recent burnchain (e.g. Bitcoin) reward recipients with the associated amounts and block info.

GET

Parameters

Query Parameters

limit
integer Results per page
offset
integer Result offset
Status codeDescription
200List of burnchain reward recipients and amounts
4XXDefault Response
cURL
curl -L \
"https://api.hiro.so/extended/v1/burnchain/rewards?limit={limit}&offset={offset}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"results": [
{
"canonical": false,
"burn_block_hash": "0x4839a8b01cfb39ffcc0d07d3db31e848d5adf5279d529ed5062300b9f353ff79",
"burn_block_height": 144000,
"burn_amount": "string",
"reward_recipient": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"reward_amount": "string",
"reward_index": 144000
}
]
}

How is this guide?