# Eth\_getTransactionCount

## Get transaction count (nonce) for address

> Sends a JSON-RPC request to retrieve the number of transactions (nonce) \
> sent from a given Ethereum address at a specified block. \
> Returns the nonce encoded in hexadecimal format.<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_getTransactionCount"],"summary":"Get transaction count (nonce) for address","operationId":"ethGetTransactionCount","description":"Sends a JSON-RPC request to retrieve the number of transactions (nonce) \nsent from a given Ethereum address at a specified block. \nReturns the nonce encoded in hexadecimal format.\n","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["jsonrpc","method","params","id"],"properties":{"jsonrpc":{"type":"string"},"method":{"type":"string"},"params":{"type":"array","description":"- address: The address to check for transaction count.\n- block: The block parameter (e.g., \"latest\", \"earliest\", \"pending\").\n","items":{"type":"string","format":"hex"},"minItems":2,"maxItems":2},"id":{"type":"integer"}}}}}},"responses":{"200":{"description":"Hex encoded nonce (transaction count)","content":{"application/json":{"schema":{"type":"object","properties":{"jsonrpc":{"type":"string"},"id":{"type":"integer"},"result":{"type":"string","format":"hex","description":"Number of transactions sent from the address, encoded as hexadecimal (nonce).\n"}}}}}}}}}}}
```
