# Block header info Returns an Object with information about blockheader. Endpoint: GET /daemon/getblockheader Version: 6.6.1 ## Query parameters: - `hash` (string, required) Block hash to get header info from Example: "000000234b617194f3faff69ee62f0dde0115f2007c3b42e38eaba80c786a5e5" - `verbose` (boolean) If verbose is false, returns a string that is serialized, hex-encoded data for blockheader 'hash'. If verbose is true, returns an Object with information about blockheader hash. Example: - =`verbosetrue` Enum: true, false ## Response 200 fields (application/json): - `status` (string) Explanation of status Enum: "success", "error" - `data` (object) - `data.hash` (string) Block hash - `data.confirmations` (integer) Number of confirmations - `data.height` (integer) Block height - `data.version` (integer) Block version - `data.merkleroot` (string) The merkle root - `data.finalsaplingroot` (string) The root of the Sapling commitment tree after applying this block - `data.time` (integer) The block time in seconds since epoch (Jan 1 1970 GMT) - `data.nonce` (string) The nonce - `data.solution` (string) The solution - `data.bits` (string) The bits - `data.difficulty` (number) The difficulty - `data.chainwork` (string) Chainwork hash - `data.previousblockhash` (string) Hash of previous block - `data.nextblockhash` (string) Hash of next block