Get signers in PoX cycle

Retrieves a list of signers in a PoX cycle.

GET

/extended/v2/pox/cycles/{cycle_number}/signers

Retrieves a list of signers in a PoX cycle.

Path parameters

cycle_number
Required
integer

PoX cycle number

Example: 56
Status codeDescription
200List of signers for cycle
Terminal
curl -X GET "https://api.mainnet.hiro.so/extended/v2/pox/cycles/56/signers"

GET request that returns signers for a PoX cycle

Example response
{
  "limit": 200,
  "offset": 0,
  "total": 0,
  "results": [
    {
      "signing_key": "string",
      "weight": 0,
      "stacked_amount": "string",
      "weight_percent": 0,
      "stacked_amount_percent": 0
    }
  ]
}