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

Get recent burnchain reward recipients

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
/extended/v1/burnchain/rewards

curl -X GET "https://api.hiro.so/extended/v1/burnchain/rewards?limit=96&offset=42000"

GET request that returns blocks

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