> For the complete documentation index, see [llms.txt](https://docs.bwarelabs.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bwarelabs.com/api-docs/ethereum-api/rpc/eth_blocknumber-method.md).

# eth\_blockNumber method

### **Parameters**

none

### **Returns**

`QUANTITY` - integer of the current block number the client is on.

### &#x20;**Example**

```bash
// Request
curl -H "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method": "eth_blockNumber","params": []}' https://eth-api.bwarelabs.com/<your-endpoint-id>

// Response

{
  "jsonrpc":"2.0",
  "id":83,
  "jsonrpc": "2.0",
  "result": "0x4b7" // 1207
}
```
