Get stacking pool members

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

GET

/extended/beta/stacking/{pool_principal}/delegations

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
Terminal
curl -X GET "https://api.mainnet.hiro.so/extended/beta/stacking/string/delegations"

GET request that returns stacking pool member details for a given pool (delegator) principal

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