POST
/
2fc1de7f08c0465f6a28e3c355e0cb14
curl --request POST \
  --url https://base-mainnet.core.chainstack.com/2fc1de7f08c0465f6a28e3c355e0cb14 \
  --header 'Content-Type: application/json' \
  --data '{
  "jsonrpc": "2.0",
  "method": "eth_gasPrice",
  "id": 1
}'
{
  "jsonrpc": "<string>",
  "id": 123,
  "result": "<string>"
}

Base API method eth_gasPrice retrieves the current gas price, which is crucial for executing transactions on the Base network. The gas price is determined by the demand for transaction processing and the supply of miners willing to process transactions.

Get you own node endpoint today

Start for free and get your app to production levels immediately. No credit card required.

You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • none — This method does not require any parameters.

Response

  • result — the current gas price, encoded as a hexadecimal string. This value fluctuates based on network activity and miner demand.

Use case

The eth_gasPrice method is essential for:

  • Users and applications preparing to send transactions, enabling them to set an appropriate gas price to ensure timely transaction processing.
  • Wallets and interfaces that provide gas price suggestions to optimize for cost and confirmation time.
  • Developers and analysts monitoring the Base network’s congestion and transaction costs.

Body

application/json

Response

200 - application/json
The current gas price

The response is of type object.