Getting the details of a block
api/v1
Retrieve the details of a block given its hash to lookup.
Path Parameter
Parameter | Type | Required | Description |
| string | Yes | A hash string of a block to lookup |
Response - 200 OK, application/json
Parameter | Type | Description |
| string | Hash representation of the block |
| string | Amount of Hycon in the block (sum of transactions) |
| string | Mining difficulty of block |
| string | Total fees accumulated from transactions in the block |
| number | Number of transactions in the block |
| string | Amount of Hycon in the block (sum of transactions) |
| string | Hash of the world state at that block |
| string | Merkle hash of all transactions in the block |
| list | List of transactions in the block |
| number | Height of the block |
| number | Timestamp when the block was added |
| string | Previous block hash |
| string | Value assigned by the miner that constitutes proof of work |
| string | Wallet address of the miner |
| string | Value assigned by the miner that constitutes proof of work |
Response Error Table
Status | Error | Message |
404 |
| the block cannot be found |
GET/api/v1/block/{hash}
Example request
Response (Success)
Last updated