docsfreshnessupdate-frequency

Update Frequency

GET/api/v1/accuracy/update-frequency

Update frequency stats over the analysis window. Returns total records, records per day, records per hour, and station counts. Useful for monitoring pipeline throughput. Optional metric filters which forecast column is considered in the window (high vs low).

Parameters

NameTypeRequiredDescription
daysintegeroptionalRolling window Default: 90
metricstringoptionalhigh (default) or low Default: high

Response Fields

FieldTypeDescription
data_typestringData source type
total_recordsintegerTotal records in window
unique_daysintegerDays with data
records_per_dayfloatAverage records per day
records_per_hourfloatAverage records per hour
stationsintegerActive station count
cURL
curl -s -H "Authorization: Bearer $API_KEY" "https://api.deltadaemon.com/api/v1/accuracy/update-frequency?days=90"
JSON
{
"success": true,
"data": {
"data_type": "weather_forecasts",
"total_records": 1995,
"unique_days": 10,
"records_per_day": 199.5,
"records_per_hour": 0.92,
"stations": 20
},
"metadata": {
"generated_at": "2026-02-22T07:57:36.266814224Z",
"days_analyzed": 90,
"total_records": 1995,
"query_time_ms": 3
}
}