Get recent burnchain reward for the given recipient

Retrieves a list of recent burnchain (e.g. Bitcoin) rewards for the given recipient with the associated amounts and block info.

GET

Parameters

Path Parameters

address
REQUIRED
string Reward recipient address. Should either be in the native burnchain's format (e.g. B58 for Bitcoin), or if a STX principal address is provided it will be encoded as into the equivalent burnchain format

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/{address}?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?