/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://api.gasfeepredictor.com/api/dashboard"{
"currentGas": { "low": 0.39, "average": 0.50, "high": 0.62, "source": "rpc-publicnode" },
"ethPrice": { "usd": 2305.12, "change_24h": 1.42, "sparkline_7d": [...], "updatedAt": "..." },
"predictions": [
{ "timestamp": "...", "low": 0.10, "average": 0.16, "high": 0.28, "isLowFeeWindow": true }
/* … 24 hourly points */
],
"nextBestWindow": { "timestamp": "...", "gasPrices": { "low": 0.10, "average": 0.15, "high": 0.19 }, "confidence": 0.82 },
"decision": { "recommendation": "wait" | "send_now", "expectedSavingsPct": 0.65, ... },
"compactHistory": [ /* recent gas history */ ],
"lastUpdated": "..."
}