eth_getBlockByHash - opBNB

Example code for the eth_getBlockByHash JSON-RPC method. Сomplete guide on how to use eth_getBlockByHash JSON-RPC in GetBlock.io Web3 documentation.

This method returns information about a block by its hash. Like eth_getBlockByNumber, the second argument controls whether transactions are returned as full objects or only hashes.

Parameters

Parameter
Type
Required
Description

blockHash

string

Yes

32-byte hash of the block

fullTransactions

boolean

Yes

If true, returns full transaction objects; if false, only hashes

Request Example

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "eth_getBlockByHash",
    "params": [
        "0x4f3a1d6e8c2b9a7e5d3f1c8a4b6e9d2f5a8c3e7b1d4f9a6c2e5b8d3f7a1c4e9b",
        false
    ],
    "id": "getblock.io"
}'

Response Example

Response Parameters

Field
Type
Description

result

object | null

Block object (same schema as eth_getBlockByNumber), or null if not found

result.number

string

Block number (hex)

result.hash

string

Block hash (32 bytes hex)

result.timestamp

string

Unix timestamp (hex)

result.transactions

array

Array of transaction hashes or full objects

Use Cases

  • Resolving a block from a known hash (e.g. from a transaction receipt)

  • Reorg detection by comparing block hashes at the same height

  • Verifying block identity for trust-minimised applications

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

-32601

Method not found

The method is not supported by this node

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Last updated

Was this helpful?