Through this endpoint customers can obtain basic information about a given mined block, specifically by using the hash
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, e.g. Ethereum, Bitcoin, etc.
Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "sepolia" are test networks.
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.
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.
Numeric representation of the Block bits
Numeric representation of the expected number of hashes required to produce the chain up to this block
Numeric representation of the block difficulty
String representation of the block merkle root
Numeric representation of the block size
Numeric representation of the block version
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".
Represents the hash of the next block. When this is the last block of the blockchain this value will be an empty string.
Represents the hash of the previous block, also known as the parent block.
Defines the numeric representation of the block size excluding the witness data.
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.
Is the hexadecimal string representation of the block's version.
Represents a measurement to compare the size of different transactions to each other in proportion to the block size limit.
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"item": {
"bits": 123456,
"chainwork": "123456",
"difficulty": 123456789,
"merkleRoot": "a1c6d67c992a70fca66188e178d9ca7c20d5c775393948f19955be7f0952c0f",
"size": 123456,
"version": 12,
"hash": "0000000006b3f483bec16b8a85c632bdd30a14a202c83a9148002c9ee441dd0c",
"height": 1941208,
"nextBlockHash": "0000000000000003b08ca90b701da447fb3e7c5c6b43acd33a5e4062fe98dea5",
"previousBlockHash": "00000000844434fd86a630ba8e29503d5396a2b6c4003d69bf0a08d96169d4cd",
"strippedSize": 895429,
"timestamp": 1615378134,
"transactionsCount": 145,
"versionHex": "20000000",
"weight": 37248
}
}
}