eth_getBlockTransactionCountByHash

Parameters

  • DATA, 32 Bytes - Hash of a block.

Returns

  • QUANTITY - Integer of the number of transactions in this block.

Example

Request

curl --location 'https://linea-mainnet.unifra.io/v1/{your-api-key}' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "method": "eth_getBlockTransactionCountByHash",
    "id": "935a56d0-d9d8-42ac-9b98-44a2c6b9a2c0",
    "params": [
        "0x2d527c4323e099781fc0c816557ed4f083ab58e5df66aa1e064e8d03d8724285"
    ]
}'
URL: https://eth-mainnet.unifra.io/v1/your-api-key
RequestType: POST
Body:
{
    "jsonrpc":"2.0",
    "method":"eth_getBlockTransactionCountByHash",
    "params":["0x8243343df08b9751f5ca0c5f8c9c0460d8a9b6351066fae0acbd4d3e776de8bb"],
    "id":0
}

Result

{
    "jsonrpc": "2.0",
    "id": "dd2c866b-6600-44ed-9c42-bc8cb2419976",
    "result": "0x3"
}
Language
Click Try It! to start a request and see the response here!