Get recent reward slot holders

Retrieves a list of the Bitcoin addresses that would validly receive Proof-of-Transfer commitments.

GET

Parameters

Query Parameters

limit
integer max number of items to fetch
offset
integer Result offset
Status codeDescription
200Default Response
4XXDefault Response
cURL
curl -L \
"https://api.hiro.so/extended/v1/burnchain/reward_slot_holders?limit={limit}&offset={offset}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"canonical": false,
"burn_block_hash": "0x4839a8b01cfb39ffcc0d07d3db31e848d5adf5279d529ed5062300b9f353ff79",
"burn_block_height": 144000,
"address": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"slot_index": 144000
}
]
}

How is this guide?