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

limitinteger

Max number of rewards to fetch

Default: 96Maximum: 250

offsetinteger

Index of first rewards to fetch

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

GET request that returns blocks

Example response
{
  "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
    }
  ]
}