/api/dashboardRefresh: 30 secondsAggregated payload for the homepage dashboard. Returns the current gas snapshot, ETH/USD price, 24h prediction series, and the next-best-time recommendation in one round trip.
curl "https://www.gasfeepredictor.com/api/dashboard"{
"current": { "low": 0.12, "average": 0.18, "high": 0.31, "source": "..." },
"ethPrice": { "usd": 2305.12, "lastUpdated": "..." },
"predictions": [
{ "timestamp": "2026-05-16T05:00:00Z", "low": 0.10, "average": 0.16, "high": 0.28, "isLowFeeWindow": true }
/* … 24 hourly points */
],
"nextBest": { "timestamp": "...", "gasPrices": { "low": 0.08, "average": 0.14, "high": 0.22 }, "confidence": 0.82 }
}