eth_getblockbyhash - AVAX

Example code for the eth_getblockbyhash JSON-RPC method. Complete guide on how to use eth_getblockbyhash JSON-RPC in GetBlock Web3 documentation.

Returns information about a C-Chain block by its hash. Same response schema as eth_getBlockByNumber.

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>/ext/bc/C/rpc' \
--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

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

Use Cases

  • Resolving a block from a known hash

  • Cross-referencing transaction receipts with their block

Error Handling

Status Code
Error Message
Cause

404

Not found

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Last updated

Was this helpful?