# Eth\_getBlockTransactionCountByNumber

## Get Transaction Count by Block Number

> Returns the number of transactions contained in the block with the given block number.<br>

```json
{"openapi":"3.0.0","info":{"title":"Ethereum JSON-RPC","version":"1.0.0"},"servers":[{"url":"https://arbitrum.nownodes.io"}],"security":[{"api-keyAuth":[]}],"components":{"securitySchemes":{"api-keyAuth":{"type":"apiKey","in":"header","name":"api-key"}}},"paths":{"/":{"post":{"tags":["eth_getBlockTransactionCountByNumber"],"summary":"Get Transaction Count by Block Number","operationId":"ethGetBlockTransactionCountByNumber","description":"Returns the number of transactions contained in the block with the given block number.\n","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["jsonrpc","method","params","id"],"properties":{"jsonrpc":{"type":"string","description":"JSON-RPC version"},"method":{"type":"string","description":"JSON-RPC method name"},"params":{"type":"array","minItems":1,"maxItems":1,"description":"Array containing a single parameter:\n  - Block number as a hex string (e.g. \"0x10d4f\" for block 69007) or\n  - predefined block tags such as \"latest\", \"earliest\", or \"pending\"\n","items":{"type":"string"}},"id":{"type":"integer","description":"Request ID"}}}}}},"responses":{"200":{"description":"Number of transactions in the block","content":{"application/json":{"schema":{"type":"object","properties":{"jsonrpc":{"type":"string","description":"JSON-RPC version"},"id":{"type":"integer","description":"Same ID as in the request"},"result":{"type":"string","description":"Number of transactions in the block, returned as a hex string"}}}}}}}}}}}
```
