Daily weather averages

This dataset provides daily average weather values ​​for a selected time period. It mainly contains the average daily temperature and a brief verbal description of the weather conditions. The data can be used for an overview of weather developments, comparison of individual days or for a longer-term analysis of climate trends.

Author
Platforma Invipo

Format
API JSON

License
Open Database License (ODbL)

Last modified
11. 12. 2025

This dataset provides daily average weather values ​​for a selected time period. It mainly contains the average daily temperature and a brief verbal description of the weather conditions. The data can be used for an overview of weather developments, comparison of individual days or for a longer-term analysis of climate trends.

Author
Platforma Invipo

Format
API JSON

License
Open Database License (ODbL)

Last modified
11. 12. 2025

Request

POST https://odpzilina.invipo.partners/api/datasets/v2/environment-monitoring/weather

Parameters

{
  "from": "2025-12-08 07:00:00.000Z",
  "to": "2025-12-09 13:00:00.000Z"
}
from (string, required, date and time) – The starting time point of the interval from which to load data (inclusive). The format corresponds to the date and time in UTC (e.g. "2025-12-08 07:00:00.000Z").
to (string, required, date and time) – The ending time point of the interval to which to load data (inclusive).

Answer

[
  {
    "timestamp": "2025-12-08T23:00:00.000Z",
    "temperature": 5.86,
    "code": 804,
    "weather": "overcast clouds"
  },
  {
    "timestamp": "2025-12-07T23:00:00.000Z",
    "temperature": 5.86,
    "code": 804,
    "weather": "overcast clouds"
  }
]
timestamp (string) – Timestamp to which the daily weather average is related (typically the end of the relevant day in UTC).
temperature (number) – Average daily air temperature in degrees Celsius.
code (number) – Weather type code according to the meteorological/icon system used (e.g. 804 = “overcast clouds” – full cloud cover).
weather (string) – Text description of weather conditions on the given day (e.g. "overcast clouds").

The response contains an array of objects, each object representing one day in the specified time interval.