Skip to main content
Crypton provides real-time Ethereum gas price data via the V2 API.

GET /v2/gas

curl "https://api.crypton.dev/v2/gas" \
  -H "X-API-Key: YOUR_API_KEY"
Example Response
{
  "status": "ok",
  "timestamp": 1711670400000,
  "data": {
    "chain": "ethereum",
    "gas_price_gwei": 18.5,
    "source": "llamarpc",
    "timestamp": 1711670400
  }
}

Response Fields

data.chain
string
Always ethereum.
data.gas_price_gwei
number
Current gas price in Gwei.
data.source
string
RPC provider used.
data.timestamp
integer
Unix timestamp (seconds) when fetched.
This returns a single gas price value (standard tier). For gas prices across all 7 EVM chains, use the V1 On-Chain Gas endpoint.