docsraw-datarun-stats
Forecast Run Stats
GET
/api/v1/data/run-statsPer-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
| Name | Type | Required | Description |
|---|---|---|---|
station_id | string | optional | ICAO station (omit for all stations) |
start_time | ISO8601 | optional | Only runs with model_run >= start_time |
end_time | ISO8601 | optional | Only runs with model_run <= end_time |
Response Fields
| Field | Type | Description |
|---|---|---|
city | string | City name |
station_id | string | ICAO station identifier |
forecast_count | integer | Number of distinct runs in window |
oldest_forecast | string | Earliest run timestamp |
max_hours | float | Largest gap between consecutive runs (hours) |
avg_hours | float | Average gap (hours) |
median_hours | float | Median 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}]}