post https://polygon-mainnet.unifra.io/v1/
Polygon API - Returns the number of transactions in a block matching the given block hash.
Parameters
- DATA, 32 Bytes - Hash of a block.
params: [
"0xbb63603be7a656f34e7a8fa41cb610f33a6c9e74536159a7676fc00eed072d90",
];
Returns
QUANTITY - Integer of the number of transactions in this block.
Example
Request
curl https://polygon-mainnet.unifra.io/v1/your-api-key \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_getBlockTransactionCountByHash","params":["0xbb63603be7a656f34e7a8fa41cb610f33a6c9e74536159a7676fc00eed072d90"],"id":0}'
URL: https://polygon-mainnet.unifra.io/v1/your-api-key
RequestType: POST
Body:
{
"jsonrpc":"2.0",
"method":"eth_getBlockTransactionCountByHash",
"params":["0xbb63603be7a656f34e7a8fa41cb610f33a6c9e74536159a7676fc00eed072d90"],
"id":0
}
Result
{
"jsonrpc": "2.0",
"id": 0,
"result": "0xaa"
}