# Eth\_gasPrice

## Get Suggested Gas Price

> Returns the current gas price in wei as a hexadecimal string.\
> This value is a node estimate based on recent blocks and mempool activity.<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_gasPrice"],"summary":"Get Suggested Gas Price","operationId":"ethGasPrice","description":"Returns the current gas price in wei as a hexadecimal string.\nThis value is a node estimate based on recent blocks and mempool activity.\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","description":"This method takes an empty array."},"id":{"type":"integer","description":"Request identifier"}}}}}},"responses":{"200":{"description":"Suggested gas price in wei","content":{"application/json":{"schema":{"type":"object","properties":{"jsonrpc":{"type":"string","description":"JSON-RPC version"},"id":{"type":"integer","description":"Same as request ID"},"result":{"type":"string","description":"Current gas price in wei, as hexadecimal.\nExample: \"0x09184e72a000\" = 10000000000000 wei (10 gwei)\n"}}}}}}}}}}}
```
