Logo
developer platform
Docs
API
Pricing
Showcase
API Overview
API Reference
Geocoding
Geocoding NearbyGeocoding SearchPort ListPort Info
Weather Core
ForecastRadarClimateWarnings
Weather Timeseries
Timeseries ModelsTimeseries Point ForecastTimeseries Route Forecast
Weather Ensemble
Ensemble ModelsEnsemble Point ForecastEnsemble Route Forecast
Marine Timeseries
Timeseries ModelsTimeseries Point Forecast
Marine Ensemble
Ensemble ModelsEnsemble Point Forecast
Vessels
Vessel SearchVessel InfoVessel LocationVessel Location History
Observations
Observations InfoObservations Latest
Lightning
Lightning LiveLightning History
Earthquakes
Earthquakes
Tropical Storms
Tropical Storms
Mobility Traffic (NL Only)
Traffic OverviewTraffic Geo
Mobility Transit (NL Only)
Transit PlannerTransit Planner MixerTransit Stops NearbyTransit Stop Departures
Developer Infoplaza (obsolete)
Weather ClimateWeather Forecast
Archive
Test ErrorWeather Climate (old)

Warnings

GET
https://api.infoplaza.dev/v1/weather/warnings

Description

The outstanding weather warnings.

Parameters

ParameterTypeRequiredDefaultDescription
latnumberRequired-The latitude of the location
lonnumberRequired-The longitude of the location
languagestringOptionalenLanguage of the results, available values: nl, en, de, fr, es, it

Response

PropertyTypeDescription
count
integerNumber of active weather warnings included in this response.
min: 0
language
stringLanguage code (ISO 639-1) in which the warning text is provided.
pattern: ^[a-z]{2}$
latitude
numberLatitude coordinate of the location in decimal degrees.
min: -90 max: 90
warnings
arrayArray of weather warning objects describing individual warning details.

Example Request

curl "https://api.infoplaza.dev/v1/weather/warnings? \
     lat=52.51 \
     &lon=13.26 \
     &api_key=$INFOPLAZA_API_KEY"

Example Response

{
  "count": 1,
  "language": "en",
  "latitude": 52.51,
  "warnings": [
    {
      "text": "There is a risk of frost (level 1 of 2).\nMinimum temperature: -4 - -9 °C; local minimum: in valleys and dips > -12 °C\nHazard(s) to expect: possible frost damage. \nRecommendations for what to do: \nIf necessary, take precautions against frost.",
      "level": 2,
      "title": "Be alert: code YELLOW for cold",
      "active": false,
      "created": "2026-01-20T11:45:00.000Z",
      "element": "LowTemperature",
      "activeEnd": "2026-01-21T10:00:00.000Z",
      "activeStart": "2026-01-20T16:00:00.000Z",
      "countryCode": "DE"
    }
  ],
  "longitude": 13.26
}
└─text
string
Detailed description of the warning including risk level, hazards, and recommendations.
└─level
integerWarning severity level, typically on a scale where higher is more severe.
└─title
stringShort, human-readable title for the weather warning.
└─active
booleanIndicates whether the warning is currently active (true) or no longer active (false).
└─created
stringDate-time in ISO 8601 format representing when the warning was created or issued.
format: date-time
└─element
stringType or category of the weather warning (e.g. LowTemperature).
└─activeEnd
stringDate-time in ISO 8601 format marking when this warning ceases to be active.
format: date-time
└─activeStart
stringDate-time in ISO 8601 format marking when this warning starts being active.
format: date-time
└─countryCode
stringISO 3166-1 alpha-2 country code indicating the country affected by the warning.
pattern: ^[A-Z]{2}$
longitude
numberLongitude coordinate of the location in decimal degrees.
min: -180 max: 180