Get recent reward slot holder entries

Retrieves a list of the Bitcoin addresses that would validly receive Proof-of-Transfer commitments for a given reward slot holder recipient address.

GET

Parameters

Path Parameters

address
REQUIRED
string Reward slot holder 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

Query Parameters

limit
integer Results per page
offset
integer Result offset
Status codeDescription
200List of burnchain reward recipients and amounts
4XXDefault Response
cURL
curl -L \
"https://api.hiro.so/extended/v1/burnchain/reward_slot_holders/{address}?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?