docsraw-datarun-stats

Forecast Run Stats

GET/api/v1/data/run-stats

Per-station stats on how often NWS hourly forecasts are updated: forecast run count, oldest run time, and max/avg/median gap (hours) between runs. Filter by station and/or time window to check collection frequency.

Parameters

NameTypeRequiredDescription
station_idstringoptionalICAO station (omit for all stations)
start_timeISO8601optionalOnly runs with model_run >= start_time
end_timeISO8601optionalOnly runs with model_run <= end_time

Response Fields

FieldTypeDescription
citystringCity name
station_idstringICAO station identifier
forecast_countintegerNumber of distinct runs in window
oldest_forecaststringEarliest run timestamp
max_hoursfloatLargest gap between consecutive runs (hours)
avg_hoursfloatAverage gap (hours)
median_hoursfloatMedian gap (hours)
cURL
curl -s -H "Authorization: Bearer $API_KEY" "https://api.deltadaemon.com/api/v1/data/run-stats?station_id=KDEN"
JSON
{
"success": true,
"data": [
{
"city": "Denver",
"station_id": "KDEN",
"forecast_count": 42,
"oldest_forecast": "2026-02-17T12:00:00Z",
"max_hours": 12.5,
"avg_hours": 4.2,
"median_hours": 3.0
}
]
}