> For the complete documentation index, see [llms.txt](/llms.txt).

# eth_getBlockTransactionCountByNumber

Returns the number of transactions in a block matching the given block number.

### Parameters

`Block`(object)

Block number or tag

### Returns

Transaction count

Example request

```
await provider.request({
  method: 'eth_getBlockTransactionCountByNumber',
  params: ['0xe8'],
})

```

Example response

```
{
  "id": 1,
  "jsonrpc": "2.0",
  "result": "0x8"
}

```
