Get stacking pool members
Retrieves the list of stacking pool members for a given delegator principal.
GET
/extended/v1/pox3/{pool_principal}/delegations
Stacking pool members
Retrieves the list of stacking pool members for a given delegator principal.
Path Parameters
pool_principal
Requiredstring
Address principal of the stacking pool delegator
Query Parameters
after_block
integer
If specified, only delegation events after the given block will be included
unanchored
boolean
whether or not to include Stackers from unconfirmed transactions
Example:true
Default: false
limit
integer
number of items to return
Example:100
Default: 100
Maximum: 200
offset
integer
number of items to skip
Example:300
Default: 0
Status code | Description |
---|---|
200 | Success |
curl -X GET "https://api.hiro.so/extended/v1/pox3/SP21YTSM60CAY6D011EZVEVNKXVW8FVZE198XEFFP/delegations?unanchored=false&limit=5"
GET request that returns stacking pool member details for a given pool (delegator) principal
{
"limit": 200,
"offset": 0,
"total": 0,
"results": [
{
"stacker": "string",
"pox_addr": "string",
"amount_ustx": "string",
"burn_block_unlock_height": 0,
"block_height": 0,
"tx_id": "string"
}
]
}