Signer information for a block

Get signer information for a specific block.

GET

Parameters

Path Parameters

block_hash
REQUIRED
string Block hash

Query Parameters

limit
REQUIRED
integer Number of results to return
offset
REQUIRED
integer Number of results to skip
Status codeDescription
200Default Response
cURL
curl -L \
"https://api.hiro.so/signer-metrics/v1/block_proposals/{block_hash}?limit={limit}&offset={offset}" \
-H 'Accept: application/json'
Response
{
"received_at": "string",
"block_height": 144000,
"block_hash": "0x4839a8b01cfb39ffcc0d07d3db31e848d5adf5279d529ed5062300b9f353ff79",
"index_block_hash": "0x4839a8b01cfb39ffcc0d07d3db31e848d5adf5279d529ed5062300b9f353ff79",
"burn_block_height": 144000,
"block_time": 144000,
"cycle_number": 0,
"status": "pending",
"push_time_ms": 0,
"total_signer_count": 1,
"total_signer_weight": 1,
"total_signer_stacked_amount": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"accepted_count": 0,
"rejected_count": 0,
"missing_count": 0,
"accepted_weight": 0,
"rejected_weight": 0,
"missing_weight": 0,
"signer_data": [
{
"signer_key": "string",
"slot_index": 0,
"response": "accepted",
"weight": "1000000",
"weight_percentage": 1,
"stacked_amount": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"version": "string",
"received_at": "string",
"response_time_ms": 0,
"reason_string": "string",
"reason_code": "string",
"reject_code": "string"
}
]
}