Yeah, that is overwhelming since it has all the hourly and minutely forecast data in it. You can add an &exclude=hourly,minutely
option to the URL to remove those items from the response and simplify it a bit.
https://api.openweathermap.org/data/3.0/onecall?lat=40.1681&lon=-80.1987&units=imperial&appid={{API_KEY}}&exclude=minutely,hourly
Also note that if you are in the US (rather the heart of China) you’ll want to make sure your longitude has the leading negative symbol in front of it.
It will still feel a bit cluttered, so you might want to put the response into a JSON Formatter to make it easier to read through:
In your case, I suspect you are looking for the forecasted daily min/max temperature. So you would want to use:
daily.0.temp.min
And:
daily.0.temp.max
This is basically getting the first entry of the daily forecast and then grabbing the ‘min’ value from under the ‘temp’ object. If you prefer to use the ‘feels_like’ temperature instead, you can do daily.0.feels_like.morn
and daily.0.feels_like.day
as an approximate morning and mid day value (eg. taking into account how hot it will feel like with humidity, etc).