Daily observed high and low temps available through API?

I’m working on a webapp to display info from my weatherstation and would like to display current temp along with the high and low temp observed for the day. Are those available in any API payload or would I would I need to store my obervations in my own db and call it from there?

These are not available in the API. You can either store the 1-minute observations in your own database and use that to calculate the max/min, or use the API to fetch up to 24 hours of 1-minute observations in a single call and use that to calculate the max/min without a database

Obligatory weewx pointer applies for this one…

2 Likes