Get total burnchain rewards for the given recipient

Retrieves the total burnchain (e.g. Bitcoin) rewards for a given recipient address.

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
Status codeDescription
200Total burnchain rewards made to a recipient
4XXDefault Response
cURL
curl -L \
"https://api.hiro.so/extended/v1/burnchain/rewards/{address}/total" \
-H 'Accept: application/json'
Response
{
"reward_recipient": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"reward_amount": "string"
}

How is this guide?