Get stacking pool members

Retrieves the list of stacking pool members for a given delegator principal.


GET
/extended/v1/pox4/{pool_principal}/delegations

Stacking pool members

Retrieves the list of stacking pool members for a given delegator principal.

Path Parameters

pool_principal
Required
string

Address principal of the stacking pool delegator

Query Parameters

after_blockinteger

If specified, only delegation events after the given block will be included

unanchoredboolean

whether or not to include Stackers from unconfirmed transactions

Example: trueDefault: false

limitinteger

number of items to return

Example: 100Default: 100Maximum: 200

offsetinteger

number of items to skip

Example: 300Default: 0
Status codeDescription
200Success
/extended/v1/pox4/{pool_principal}/delegations

Terminal
$
curl -X GET "https://api.hiro.so/extended/v1/pox4/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"
}
]
}