Skip to main content

Weather

In the Weather API section, retrieve forecast, historical, and current weather data through EOSDA API Connect. Streamline your weather information integration for enhanced insights and analysis.

Explore alternative API methods to acquire comprehensive weather data. For additional details, refer to the documentation available here.

Forecast weather data​

The returned forecast information accounts for 14 days ahead and includes information in regards to the cloudiness, temperature, precipitation, humidity, wind and much more valuable data.

Weather forecast for field​

For retrieving the forecast data,basically the field id is needed as well as the stating and ending date in the body of the request. Please keep in mind that the starting date most be equal or later than the current date of the request and the end date must be maximum 14 days ahead from the date of the request. The step of update is 3 hours

ValueDescriptionType
CloudinessCloud cover amount in percentInteger
Conditions_codeWeather conditions code. Further information hereString
HumidityHumidity in percentageInteger
PrecipitationsPrecipitation in mmInteger
Temperature_maxMaximum temperature during the day in celsiusInteger
Temperature_minMinimum temperature during the day in celsiusInteger
WindWindspeed in meter per secondInteger
Wind_directionsBlowing direction of the windString

Example:​

curl --location --request POST 'https://api-connect.eos.com/weather/forecast/9793351' \
--header 'Content-Type: text/plain' \
--header 'x-api-key: <your_api_key>' \
--data '{
"params": {
"date_start": "2024-01-08",
"date_end": "2024-01-18"
}
}'

Response:

[
{
"date": "2024-01-08",
"forecast": [
{
"humidity": 45.761806236373054,
"temperature_max": 21.601281738281273,
"temperature_min": 2.3522277832031477,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-08T02:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 4.2961635988744
},
{
"humidity": 45.761806236373054,
"temperature_max": 21.601281738281273,
"temperature_min": 2.3522277832031477,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-08T05:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 3.950601320953569
},
{
"humidity": 45.761806236373054,
"temperature_max": 21.601281738281273,
"temperature_min": 2.3522277832031477,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-08T08:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 3.4602016232170274
},
{
"humidity": 45.761806236373054,
"temperature_max": 21.601281738281273,
"temperature_min": 2.3522277832031477,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-08T11:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 1.4287257352182943
},
{
"humidity": 45.761806236373054,
"temperature_max": 21.601281738281273,
"temperature_min": 2.3522277832031477,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-08T14:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 1.0576833329603563
},
{
"humidity": 45.761806236373054,
"temperature_max": 21.601281738281273,
"temperature_min": 2.3522277832031477,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-08T17:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 2.0906341795156727
},
{
"humidity": 45.761806236373054,
"temperature_max": 21.601281738281273,
"temperature_min": 2.3522277832031477,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-08T20:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 9.708222257845472
},
{
"humidity": 45.761806236373054,
"temperature_max": 21.601281738281273,
"temperature_min": 2.3522277832031477,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-08T23:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 11.247261841497052
}
]
},
...
{
"date": "2024-01-15",
"forecast": [
{
"humidity": 40.20418383280436,
"temperature_max": 22.908563232421898,
"temperature_min": 3.5285888671875227,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-15T02:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 1.6735414074802637
},
{
"humidity": 40.20418383280436,
"temperature_max": 22.908563232421898,
"temperature_min": 3.5285888671875227,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-15T05:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 1.8773609139602843
},
{
"humidity": 40.20418383280436,
"temperature_max": 22.908563232421898,
"temperature_min": 3.5285888671875227,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-15T08:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 1.1573650184311801
},
{
"humidity": 40.20418383280436,
"temperature_max": 22.908563232421898,
"temperature_min": 3.5285888671875227,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-15T11:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 0.593333160977805
},
{
"humidity": 40.20418383280436,
"temperature_max": 22.908563232421898,
"temperature_min": 3.5285888671875227,
"cloudiness": null,
"precipitation": 0.0,
"start_time": "2024-01-15T14:00:00",
"end_time": null,
"total_conditions": null,
"conditions_code": null,
"wind_direction": null,
"wind": 1.372057846949892
}
]
}
]

High accuracy weather forecast​

Forecast for 14 days with step 1 hour

curl --location --request POST 'https://api-connect.eos.com/weather/forecast-high-accuracy/9793351' \
--header 'Content-Type: text/plain' \
--header 'x-api-key: <your_api_key>' \
--data '{"params":{"date_start": "2024-01-04","date_end": "2024-01-18"}}'

Response:

[
{
"date": "2024-01-04",
"forecast": [
{
"total_conditions": "Clear",
"start_time": "2024-01-04T00:00:00-06:00",
"end_time": "2024-01-04T00:59:59-06:00",
"wind_direction": "SSE",
"humidity": "41.000000000000000",
"temperature_max": "9.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "9.000000000000000",
"wind": "3.611111111111111",
"conditions_code": "113",
"avg_temperature": "9.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T01:00:00-06:00",
"end_time": "2024-01-04T01:59:59-06:00",
"wind_direction": "SSE",
"humidity": "42.000000000000000",
"temperature_max": "9.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "9.000000000000000",
"wind": "3.888888888888889",
"conditions_code": "113",
"avg_temperature": "9.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T02:00:00-06:00",
"end_time": "2024-01-04T02:59:59-06:00",
"wind_direction": "SSE",
"humidity": "44.000000000000000",
"temperature_max": "8.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "8.000000000000000",
"wind": "3.888888888888889",
"conditions_code": "113",
"avg_temperature": "8.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T03:00:00-06:00",
"end_time": "2024-01-04T03:59:59-06:00",
"wind_direction": "S",
"humidity": "47.000000000000000",
"temperature_max": "8.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "8.000000000000000",
"wind": "2.777777777777778",
"conditions_code": "113",
"avg_temperature": "8.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T04:00:00-06:00",
"end_time": "2024-01-04T04:59:59-06:00",
"wind_direction": "SSE",
"humidity": "48.000000000000000",
"temperature_max": "8.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "8.000000000000000",
"wind": "3.333333333333333",
"conditions_code": "113",
"avg_temperature": "8.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T05:00:00-06:00",
"end_time": "2024-01-04T05:59:59-06:00",
"wind_direction": "SSE",
"humidity": "48.000000000000000",
"temperature_max": "7.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "7.000000000000000",
"wind": "3.888888888888889",
"conditions_code": "113",
"avg_temperature": "7.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T06:00:00-06:00",
"end_time": "2024-01-04T06:59:59-06:00",
"wind_direction": "SSE",
"humidity": "48.000000000000000",
"temperature_max": "7.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "7.000000000000000",
"wind": "4.166666666666667",
"conditions_code": "113",
"avg_temperature": "7.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T07:00:00-06:00",
"end_time": "2024-01-04T07:59:59-06:00",
"wind_direction": "SE",
"humidity": "47.000000000000000",
"temperature_max": "7.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "7.000000000000000",
"wind": "4.444444444444445",
"conditions_code": "113",
"avg_temperature": "7.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T08:00:00-06:00",
"end_time": "2024-01-04T08:59:59-06:00",
"wind_direction": "SSE",
"humidity": "46.000000000000000",
"temperature_max": "7.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "7.000000000000000",
"wind": "4.444444444444445",
"conditions_code": "113",
"avg_temperature": "7.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T09:00:00-06:00",
"end_time": "2024-01-04T09:59:59-06:00",
"wind_direction": "SSE",
"humidity": "41.000000000000000",
"temperature_max": "9.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "9.000000000000000",
"wind": "4.722222222222222",
"conditions_code": "113",
"avg_temperature": "9.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T10:00:00-06:00",
"end_time": "2024-01-04T10:59:59-06:00",
"wind_direction": "S",
"humidity": "27.000000000000000",
"temperature_max": "12.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "12.000000000000000",
"wind": "5.277777777777778",
"conditions_code": "113",
"avg_temperature": "12.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T11:00:00-06:00",
"end_time": "2024-01-04T11:59:59-06:00",
"wind_direction": "SW",
"humidity": "18.000000000000000",
"temperature_max": "14.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "14.000000000000000",
"wind": "3.333333333333333",
"conditions_code": "113",
"avg_temperature": "14.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T12:00:00-06:00",
"end_time": "2024-01-04T12:59:59-06:00",
"wind_direction": "W",
"humidity": "14.000000000000000",
"temperature_max": "16.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "16.000000000000000",
"wind": "3.333333333333333",
"conditions_code": "113",
"avg_temperature": "16.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T13:00:00-06:00",
"end_time": "2024-01-04T13:59:59-06:00",
"wind_direction": "NW",
"humidity": "10.000000000000000",
"temperature_max": "19.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "19.000000000000000",
"wind": "3.888888888888889",
"conditions_code": "113",
"avg_temperature": "19.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T14:00:00-06:00",
"end_time": "2024-01-04T14:59:59-06:00",
"wind_direction": "WNW",
"humidity": "9.000000000000000",
"temperature_max": "21.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "21.000000000000000",
"wind": "9.166666666666666",
"conditions_code": "113",
"avg_temperature": "21.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T15:00:00-06:00",
"end_time": "2024-01-04T15:59:59-06:00",
"wind_direction": "WNW",
"humidity": "9.000000000000000",
"temperature_max": "21.000000000000000",
"cloudiness": "3.0",
"precipitation": "0.000",
"temperature_min": "21.000000000000000",
"wind": "13.333333333333332",
"conditions_code": "113",
"avg_temperature": "21.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-04T16:00:00-06:00",
"end_time": "2024-01-04T16:59:59-06:00",
"wind_direction": "WNW",
"humidity": "11.000000000000000",
"temperature_max": "20.000000000000000",
"cloudiness": "20.0",
"precipitation": "0.000",
"temperature_min": "20.000000000000000",
"wind": "12.500000000000000",
"conditions_code": "113",
"avg_temperature": "20.000000000000000"
},
{
"total_conditions": "Partly cloudy",
"start_time": "2024-01-04T17:00:00-06:00",
"end_time": "2024-01-04T17:59:59-06:00",
"wind_direction": "WNW",
"humidity": "14.000000000000000",
"temperature_max": "19.000000000000000",
"cloudiness": "32.0",
"precipitation": "0.000",
"temperature_min": "19.000000000000000",
"wind": "11.944444444444445",
"conditions_code": "116",
"avg_temperature": "19.000000000000000"
},
{
"total_conditions": "Partly cloudy",
"start_time": "2024-01-04T18:00:00-06:00",
"end_time": "2024-01-04T18:59:59-06:00",
"wind_direction": "WNW",
"humidity": "18.000000000000000",
"temperature_max": "17.000000000000000",
"cloudiness": "32.0",
"precipitation": "0.000",
"temperature_min": "17.000000000000000",
"wind": "11.666666666666666",
"conditions_code": "116",
"avg_temperature": "17.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T19:00:00-06:00",
"end_time": "2024-01-04T19:59:59-06:00",
"wind_direction": "NW",
"humidity": "20.000000000000000",
"temperature_max": "15.000000000000000",
"cloudiness": "25.0",
"precipitation": "0.000",
"temperature_min": "15.000000000000000",
"wind": "10.277777777777777",
"conditions_code": "113",
"avg_temperature": "15.000000000000000"
},
{
"total_conditions": "Partly cloudy",
"start_time": "2024-01-04T20:00:00-06:00",
"end_time": "2024-01-04T20:59:59-06:00",
"wind_direction": "NW",
"humidity": "21.000000000000000",
"temperature_max": "14.000000000000000",
"cloudiness": "33.0",
"precipitation": "0.000",
"temperature_min": "14.000000000000000",
"wind": "8.888888888888890",
"conditions_code": "116",
"avg_temperature": "14.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T21:00:00-06:00",
"end_time": "2024-01-04T21:59:59-06:00",
"wind_direction": "NW",
"humidity": "23.000000000000000",
"temperature_max": "12.000000000000000",
"cloudiness": "2.0",
"precipitation": "0.000",
"temperature_min": "12.000000000000000",
"wind": "8.611111111111110",
"conditions_code": "113",
"avg_temperature": "12.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T22:00:00-06:00",
"end_time": "2024-01-04T22:59:59-06:00",
"wind_direction": "NW",
"humidity": "25.000000000000000",
"temperature_max": "11.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "11.000000000000000",
"wind": "7.500000000000000",
"conditions_code": "113",
"avg_temperature": "11.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-04T23:00:00-06:00",
"end_time": "2024-01-04T23:59:59-06:00",
"wind_direction": "NNW",
"humidity": "28.000000000000000",
"temperature_max": "9.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "9.000000000000000",
"wind": "5.833333333333333",
"conditions_code": "113",
"avg_temperature": "9.000000000000000"
}
]
},
...
{
"date": "2024-01-17",
"forecast": [
{
"total_conditions": "Clear",
"start_time": "2024-01-17T00:00:00-06:00",
"end_time": "2024-01-17T00:59:59-06:00",
"wind_direction": "S",
"humidity": "38.000000000000000",
"temperature_max": "9.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "9.000000000000000",
"wind": "3.055555555555555",
"conditions_code": "113",
"avg_temperature": "9.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T01:00:00-06:00",
"end_time": "2024-01-17T01:59:59-06:00",
"wind_direction": "S",
"humidity": "38.000000000000000",
"temperature_max": "9.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "9.000000000000000",
"wind": "2.777777777777778",
"conditions_code": "113",
"avg_temperature": "9.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T02:00:00-06:00",
"end_time": "2024-01-17T02:59:59-06:00",
"wind_direction": "S",
"humidity": "39.000000000000000",
"temperature_max": "8.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "8.000000000000000",
"wind": "2.500000000000000",
"conditions_code": "113",
"avg_temperature": "8.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T03:00:00-06:00",
"end_time": "2024-01-17T03:59:59-06:00",
"wind_direction": "S",
"humidity": "39.000000000000000",
"temperature_max": "8.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "8.000000000000000",
"wind": "2.222222222222222",
"conditions_code": "113",
"avg_temperature": "8.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T04:00:00-06:00",
"end_time": "2024-01-17T04:59:59-06:00",
"wind_direction": "S",
"humidity": "38.000000000000000",
"temperature_max": "8.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "8.000000000000000",
"wind": "1.666666666666666",
"conditions_code": "113",
"avg_temperature": "8.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T05:00:00-06:00",
"end_time": "2024-01-17T05:59:59-06:00",
"wind_direction": "SSW",
"humidity": "38.000000000000000",
"temperature_max": "7.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "7.000000000000000",
"wind": "1.388888888888889",
"conditions_code": "113",
"avg_temperature": "7.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T06:00:00-06:00",
"end_time": "2024-01-17T06:59:59-06:00",
"wind_direction": "SW",
"humidity": "37.000000000000000",
"temperature_max": "8.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "8.000000000000000",
"wind": "1.111111111111111",
"conditions_code": "113",
"avg_temperature": "8.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T07:00:00-06:00",
"end_time": "2024-01-17T07:59:59-06:00",
"wind_direction": "SW",
"humidity": "33.000000000000000",
"temperature_max": "9.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "9.000000000000000",
"wind": "1.111111111111111",
"conditions_code": "113",
"avg_temperature": "9.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T08:00:00-06:00",
"end_time": "2024-01-17T08:59:59-06:00",
"wind_direction": "SW",
"humidity": "29.000000000000000",
"temperature_max": "10.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "10.000000000000000",
"wind": "1.111111111111111",
"conditions_code": "113",
"avg_temperature": "10.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T09:00:00-06:00",
"end_time": "2024-01-17T09:59:59-06:00",
"wind_direction": "SW",
"humidity": "25.000000000000000",
"temperature_max": "11.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "11.000000000000000",
"wind": "1.111111111111111",
"conditions_code": "113",
"avg_temperature": "11.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T10:00:00-06:00",
"end_time": "2024-01-17T10:59:59-06:00",
"wind_direction": "WSW",
"humidity": "21.000000000000000",
"temperature_max": "14.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "14.000000000000000",
"wind": "1.111111111111111",
"conditions_code": "113",
"avg_temperature": "14.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T11:00:00-06:00",
"end_time": "2024-01-17T11:59:59-06:00",
"wind_direction": "WSW",
"humidity": "17.000000000000000",
"temperature_max": "16.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "16.000000000000000",
"wind": "1.111111111111111",
"conditions_code": "113",
"avg_temperature": "16.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T12:00:00-06:00",
"end_time": "2024-01-17T12:59:59-06:00",
"wind_direction": "W",
"humidity": "13.000000000000000",
"temperature_max": "18.000000000000000",
"cloudiness": "2.0",
"precipitation": "0.000",
"temperature_min": "18.000000000000000",
"wind": "1.111111111111111",
"conditions_code": "113",
"avg_temperature": "18.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T13:00:00-06:00",
"end_time": "2024-01-17T13:59:59-06:00",
"wind_direction": "WNW",
"humidity": "12.000000000000000",
"temperature_max": "19.000000000000000",
"cloudiness": "2.0",
"precipitation": "0.000",
"temperature_min": "19.000000000000000",
"wind": "1.388888888888889",
"conditions_code": "113",
"avg_temperature": "19.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T14:00:00-06:00",
"end_time": "2024-01-17T14:59:59-06:00",
"wind_direction": "NW",
"humidity": "11.000000000000000",
"temperature_max": "21.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "21.000000000000000",
"wind": "1.944444444444444",
"conditions_code": "113",
"avg_temperature": "21.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T15:00:00-06:00",
"end_time": "2024-01-17T15:59:59-06:00",
"wind_direction": "N",
"humidity": "10.000000000000000",
"temperature_max": "21.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "21.000000000000000",
"wind": "2.222222222222222",
"conditions_code": "113",
"avg_temperature": "21.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T16:00:00-06:00",
"end_time": "2024-01-17T16:59:59-06:00",
"wind_direction": "WSW",
"humidity": "11.000000000000000",
"temperature_max": "21.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "21.000000000000000",
"wind": "2.777777777777778",
"conditions_code": "113",
"avg_temperature": "21.000000000000000"
},
{
"total_conditions": "Sunny",
"start_time": "2024-01-17T17:00:00-06:00",
"end_time": "2024-01-17T17:59:59-06:00",
"wind_direction": "SE",
"humidity": "12.000000000000000",
"temperature_max": "20.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "20.000000000000000",
"wind": "3.611111111111111",
"conditions_code": "113",
"avg_temperature": "20.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T18:00:00-06:00",
"end_time": "2024-01-17T18:59:59-06:00",
"wind_direction": "NNE",
"humidity": "13.000000000000000",
"temperature_max": "19.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "19.000000000000000",
"wind": "4.166666666666667",
"conditions_code": "113",
"avg_temperature": "19.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T19:00:00-06:00",
"end_time": "2024-01-17T19:59:59-06:00",
"wind_direction": "ENE",
"humidity": "15.000000000000000",
"temperature_max": "17.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "17.000000000000000",
"wind": "3.888888888888889",
"conditions_code": "113",
"avg_temperature": "17.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T20:00:00-06:00",
"end_time": "2024-01-17T20:59:59-06:00",
"wind_direction": "E",
"humidity": "17.000000000000000",
"temperature_max": "16.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "16.000000000000000",
"wind": "3.333333333333333",
"conditions_code": "113",
"avg_temperature": "16.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T21:00:00-06:00",
"end_time": "2024-01-17T21:59:59-06:00",
"wind_direction": "ESE",
"humidity": "19.000000000000000",
"temperature_max": "15.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "15.000000000000000",
"wind": "2.777777777777778",
"conditions_code": "113",
"avg_temperature": "15.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T22:00:00-06:00",
"end_time": "2024-01-17T22:59:59-06:00",
"wind_direction": "SE",
"humidity": "21.000000000000000",
"temperature_max": "14.000000000000000",
"cloudiness": "1.0",
"precipitation": "0.000",
"temperature_min": "14.000000000000000",
"wind": "2.777777777777778",
"conditions_code": "113",
"avg_temperature": "14.000000000000000"
},
{
"total_conditions": "Clear",
"start_time": "2024-01-17T23:00:00-06:00",
"end_time": "2024-01-17T23:59:59-06:00",
"wind_direction": "SSE",
"humidity": "24.000000000000000",
"temperature_max": "13.000000000000000",
"cloudiness": "0.0",
"precipitation": "0.000",
"temperature_min": "13.000000000000000",
"wind": "2.777777777777778",
"conditions_code": "113",
"avg_temperature": "13.000000000000000"
}
]
}
]

Historical weather data​

Records on the past historical weather including temperature, precipitation, humidity cloud coverage, wind and other valuable data.

Accumulated historical weather​

note

​​Historical-accumulated weather is a type of API data that provides information about the total amount of precipitation or temperature that has accumulated over a period of time.

For example, a historical-accumulated precipitation API might return data on the total amount of rain that has fallen in a specific location over the past month. This data could be used to determine if there is a risk of flooding, or to plan irrigation schedules for crops.

A historical-accumulated temperature API might return data on the average temperature that has been recorded in a specific location over the past year. This data could be used to forecast future temperatures, or to plan outdoor activities.

curl --location --request POST 'https://api-connect.eos.com/weather/historical-accumulated/9793351' \
--header 'Content-Type: text/plain' \
--header 'x-api-key: <your_api_key>' \
--data '{
"params": {
"date_start": "2023-03-20",
"date_end": "2023-03-26",
"sum_of_active_temperatures": 10
},
"provider": "weather-online"
}'

Response:

[
{
"date": "2023-03-20",
"rainfall_accumulated_avg": 0,
"temperature_accumulated_avg": 12.5
},
{
"date": "2023-03-21",
"rainfall_accumulated_avg": 0,
"temperature_accumulated_avg": 28
},
{
"date": "2023-03-22",
"rainfall_accumulated_avg": 0,
"temperature_accumulated_avg": 46
},
{
"date": "2023-03-23",
"rainfall_accumulated_avg": 0,
"temperature_accumulated_avg": 64.5
},
{
"date": "2023-03-24",
"rainfall_accumulated_avg": 0,
"temperature_accumulated_avg": 80.5
},
{
"date": "2023-03-25",
"rainfall_accumulated_avg": 0,
"temperature_accumulated_avg": 94
},
{
"date": "2023-03-26",
"rainfall_accumulated_avg": 0,
"temperature_accumulated_avg": 110.5
}
]

High accuracy historical weather​

tip

Recommendation: use data range up to 1 month

curl --location --request POST 'https://api-connect.eos.com/weather/historical-high-accuracy/9793351' \
--header 'Content-Type: text/plain' \
--header 'x-api-key: <your_api_key>' \
--data '{
"params": {
"date_start": "2023-03-20",
"date_end": "2023-03-26"
}
}'

Response:

[
{
"rainfall": 0,
"temp_critical": 0,
"temperature_min": 3,
"temperature_max": 22,
"date": "2023-03-20"
},
{
"rainfall": 0,
"temp_critical": 0,
"temperature_min": 5,
"temperature_max": 26,
"date": "2023-03-21"
},
...
{
"rainfall": 0,
"temp_critical": 0,
"temperature_min": -1,
"temperature_max": 28,
"date": "2023-03-25"
},
{
"rainfall": 0,
"temp_critical": 0,
"temperature_min": 4,
"temperature_max": 29,
"date": "2023-03-26"
}
]