curl --request GET \
--url 'https://beaconcha.in/api/v1/execution/gasnow?apikey='{
"code": 200,
"data": {
"rapid": 141086566,
"fast": 141086542,
"standard": 141086518,
"slow": 141086044,
"timestamp": 1760076662742,
"price": 4366.60356702,
"priceUSD": 4366.60356702
}
}Retrieve current execution-layer fee recommendations and ETH price snapshot. The response provides four fee tiers expressed as wei per gas, each corresponding to a target inclusion time: rapid (≈15 seconds), fast (≈1 minute), standard (≈3 minutes), and slow (>10 minutes). The payload also includes a Unix millisecond timestamp and an ETH/USD price snapshot.
curl --request GET \
--url 'https://beaconcha.in/api/v1/execution/gasnow?apikey='{
"code": 200,
"data": {
"rapid": 141086566,
"fast": 141086542,
"standard": 141086518,
"slow": 141086044,
"timestamp": 1760076662742,
"price": 4366.60356702,
"priceUSD": 4366.60356702
}
}Current fee recommendations and price snapshot were retrieved successfully.
Was this page helpful?