Get Block Details By Block Hash

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.

Single Result - This endpoint returns only one single result. GET /blockchain-data/{blockchain}/{network}/blocks/hash/{blockHash}

Path Parameters

  • Required
    blockchain string

    Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.

    Example : bitcoin
    Possible Values : bitcoin ethereum ethereum-classic bitcoin-cash litecoin dogecoin dash binance-smart-chain zcash
  • Required
    network string

    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", "goerli" are test networks.

    Example : testnet
    Possible Values : mainnet testnet mordor sepolia
  • Required
    blockHash string

    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.

    Example : 0000000006b3f483bec16b8a85c632bdd30a14a202c83a9148002c9ee441dd0c

Query parameters

  • Optional
    context string

    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.

    Example : yourExampleString

Response schema

200 400 401 402 403 404 409 415 422 429 500
HTTP Status Code: 200
Content-Type: application/json

The request has been successful.

  • Object :

  • Required
    apiVersion string

    Specifies the version of the API that incorporates this endpoint.

    Example : 2023-04-25
  • Required
    requestId string

    Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

    Example : 601c1710034ed6d407996b30
  • Optional
    context string

    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.

    Example : yourExampleString
  • Required
    data object
    • Required
      item object
      • Required
        hash string

        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.

        Example : 0000000006b3f483bec16b8a85c632bdd30a14a202c83a9148002c9ee441dd0c
      • Required
        height integer

        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".

        Example : 1941208
      • Required
        nextBlockHash string

        Represents the hash of the next block. When this is the last block of the blockchain this value will be an empty string.

        Example : 0000000000000003b08ca90b701da447fb3e7c5c6b43acd33a5e4062fe98dea5
      • Required
        previousBlockHash string

        Represents the hash of the previous block, also known as the parent block.

        Example : 00000000844434fd86a630ba8e29503d5396a2b6c4003d69bf0a08d96169d4cd
      • Required
        timestamp integer

        Defines the exact date/time when this block was mined in Unix Timestamp.

        Example : 1615378134
      • Required
        transactionsCount integer

        Represents the total number of all transactions as part of this block.

        Example : 145
      • Required
        blockchainSpecific object One Of
        object
        • Required
          difficulty string

          Represents a mathematical value of how hard it is to find a valid hash for this block.

          Example : 209515044.4071968
        • Optional
          size integer

          Numeric representation of the block size

        • Required
          bits string

          A sub-unit of BTC equal to 0.000001 BTC, or 100 Satoshi, and is the same as microbitcoin (μBTC). Bits have two-decimal precision.

          Example : 420773839
        • Required
          chainwork string

          Represents a hexadecimal number of all the hashes necessary to produce the current chain. E.g., when converting 0000000000000000000000000000000000000000000086859f7a841475b236fd to a decimal you get 635262017308958427068157 hashes, or 635262 exahashes.

          Example : 0000000000000000000000000000000000000000000003ddecb747af741625d6
        • Required
          merkleRoot string

          Defines the single and final (root) node of a Merkle tree. It is the combined hash of all transactions' hashes that are part of a blockchain block.

          Example : 7b52cc9ce137b92365eb4d0f8a708da9e3ba199aa422f96352a0c0c87221251b
        • Required
          nonce integer

          Represents a random value that can be adjusted to satisfy the Proof of Work.

          Example : 1535290446
        • Required
          strippedSize integer

          Defines the numeric representation of the block size excluding the witness data.

          Example : 2840
        • Required
          version integer

          Represents the version of the specific block on the blockchain.

          Example : 545259520
        • Required
          versionHex string

          Is the hexadecimal string representation of the block's version.

          Example : 20000000
        • Required
          weight integer

          Represents a measurement to compare the size of different transactions to each other in proportion to the block size limit.

          Example : 12412

Credits Cost : 500 Credits For 1 Result(s)

Try it out

Request Example

GET
https://rest.cryptoapis.io/blockchain-data/bitcoin/testnet/blocks/hash/0000000006b3f483bec16b8a85c632bdd30a14a202c83a9148002c9ee441dd0c?context=yourExampleString
Headers
Content-Type: application/json
X-API-Key: my-api-key

Response Example

{
    "apiVersion": "2023-04-25",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "hash": "0000000006b3f483bec16b8a85c632bdd30a14a202c83a9148002c9ee441dd0c",
            "height": 1941208,
            "nextBlockHash": "0000000000000003b08ca90b701da447fb3e7c5c6b43acd33a5e4062fe98dea5",
            "previousBlockHash": "00000000844434fd86a630ba8e29503d5396a2b6c4003d69bf0a08d96169d4cd",
            "timestamp": 1615378134,
            "transactionsCount": 145,
            "blockchainSpecific": {
                "difficulty": "209515044.4071968",
                "size": "",
                "bits": "420773839",
                "chainwork": "0000000000000000000000000000000000000000000003ddecb747af741625d6",
                "merkleRoot": "7b52cc9ce137b92365eb4d0f8a708da9e3ba199aa422f96352a0c0c87221251b",
                "nonce": 1535290446,
                "strippedSize": 2840,
                "version": 545259520,
                "versionHex": "20000000",
                "weight": 12412
            }
        }
    }
}