PoX Cycle Signers

Get a list of signers in a given PoX cycle.

GET

Parameters

Path Parameters

cycle_number
REQUIRED
integer PoX cycle number

Query Parameters

from
string Start of time range (e.g., now-2h or ISO timestamp)
to
string End of time range (e.g., now or ISO timestamp)
limit
REQUIRED
integer Number of results to return (default: 100)
offset
REQUIRED
integer Number of results to skip (default: 0)
Status codeDescription
200Default Response
cURL
curl -L \
"https://api.hiro.so/signer-metrics/v1/cycles/{cycle_number}/signers?from={from}&to={to}&limit={limit}&offset={offset}" \
-H 'Accept: application/json'
Response
{
"total": 1,
"limit": 20,
"offset": 0,
"results": [
{
"signer_key": "string",
"slot_index": 0,
"weight": "1000000",
"weight_percentage": 1,
"stacked_amount": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"stacked_amount_percent": "1000000",
"stacked_amount_rank": "1000000",
"proposals_accepted_count": 144000,
"proposals_rejected_count": 144000,
"proposals_missed_count": 144000,
"average_response_time_ms": 144000,
"last_seen": "string",
"version": "string"
}
]
}