Get total burnchain rewards for the given recipient

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

GET

/extended/v1/burnchain/rewards/{address}/total

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

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

Example: "36hQtSEXBMevo5chpxhfAGiCTSC34QKgda"
Status codeDescription
200List of burnchain reward recipients and amounts
Terminal
curl -X GET "https://api.mainnet.hiro.so/extended/v1/burnchain/rewards/36hQtSEXBMevo5chpxhfAGiCTSC34QKgda/total"

GET request that returns total burnchain rewards made to a recipient.

Example response
{
  "reward_recipient": "string",
  "reward_amount": "string"
}