Tenure fork info

RPC node

Get information about tenure forks between two block IDs.

GET

Parameters

Path Parameters

start
REQUIRED
string Starting consensus hash (40 hexadecimal characters, without 0x prefix)
stop
REQUIRED
string Stopping consensus hash (40 hexadecimal characters, without 0x prefix)
Status codeDescription
200Ordered list of tenure fork events from `stop` back to (and including) `start`
400Bad request
404Not found
500Internal Server Error
cURL
curl -L \
"https://api.hiro.so/v3/tenures/fork_info/{start}/{stop}" \
-H 'Accept: application/json'
Response
[
{
"burn_block_hash": "0x4839a8b01cfb39ffcc0d07d3db31e848d5adf5279d529ed5062300b9f353ff79",
"burn_block_height": 144000,
"sortition_id": "0x1234567890abcdef",
"parent_sortition_id": "0x1234567890abcdef",
"consensus_hash": "0x1234567890abcdef",
"was_sortition": false
}
]

How is this guide?