Through this endpoint customers can obtain basic information about a given mined block, specifically by using the height parameter. These block details could include the hash of the specific, the previous and the next block, its transactions count, its height, etc.
Blockchain specific data is information such as version, nonce, size, bits, merkleroot, etc.
Represents the specific blockchain protocol name
Represents the name of the blockchain network used.
Represents the number of blocks in the blockchain preceding this specific block. Block numbers have no gaps. A blockchain usually starts with block 0 called the "Genesis block".
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.
Specifies the version of the API that incorporates this endpoint.
Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.
Represents the hash of the block, which is its unique identifier. It represents a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.
Represents the number of blocks in the blockchain preceding this specific block. Block numbers have no gaps. A blockchain usually starts with block 0 called the "Genesis block".
Representation of the next block hash.
Represents the hash of the previous block, also known as the parent block.
Numeric representation of the block size
Defines the exact date/time when this block was mined in Unix Timestamp.
Represents the total number of all transactions as part of this block.
Represents any data that can be included by the miner in the block.
Numeric representation of the block gas limit
Numeric representation of the block gas used
Numeric representation of the block gas limit
Numeric representation of the block nonce
Numeric representation of the block total difficulty
API Key
{
"apiVersion": "224-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"item": {
"hash": "0x7f44b4943a7d1b318763a97ab8f16c352578b3daa06b0d4729dd1ec6d6d657c0",
"height": 673852,
"nextBlockHash": "0x45ec99037b9098f402ab83fa962ba54c11b6e5e5d3a981961e0784e8edf6f2a0",
"previousBlockHash": "0x6b1fdd6357845016fb238d1bd58992a01b01c94e668f55e9502d65f0a50ac021",
"size": 123,
"timestamp": 1681893875,
"transactionsCount": 12,
"extraData": "0xd983010203844765746887676f312e342e328777696e646f7773",
"gasLimit": 3141592,
"gasUsed": 21000,
"minedInSeconds": 3,
"nonce": 2,
"totalDifficulty": 201047
}
}
}