Logo
Developer Platform
Docs
API
Pricing
Showcases
API Reference
Geo
/v1/geo/nearby/v1/geo/search
Traffic
/v1/traffic/geo/v1/traffic/overview
Transit
/v1/transit/stops/departures/v1/transit/stops/nearby
Weather
/v1/weather/climate/v1/weather/forecast/v1/weather/models/forecast/v1/weather/models/info/v1/weather/radar/v1/weather/storms/v1/weather/warnings
_Other
/test/error_custom/weather/v1/climate/weather/v1/climate_old/weather/v1/forecast

Weather Warnings

GET
/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
latitude
numberLatitude coordinate of the location in decimal degrees.
min: -90 max: 90
longitude
numberLongitude coordinate of the location in decimal degrees.
min: -180 max: 180
language
stringLanguage code (ISO 639-1) in which the warning text is provided.
pattern: ^[a-z]{2}$
count
integerNumber of active weather warnings included in this response.
min: 0
warnings
arrayArray of weather warning objects describing individual warning details.
└─element
stringType or category of the weather warning (e.g. LowTemperature).
└─title
stringShort, human-readable title for the weather warning.
└─text
stringDetailed description of the warning including risk level, hazards, and recommendations.
└─level
integerWarning severity level, typically on a scale where higher is more severe.
└─countryCode
stringISO 3166-1 alpha-2 country code indicating the country affected by the warning.
pattern: ^[A-Z]{2}$
└─active
booleanIndicates whether the warning is currently active (true) or no longer active (false).
└─activeStart
stringDate-time in ISO 8601 format marking when this warning starts being active.
format: date-time
└─activeEnd
stringDate-time in ISO 8601 format marking when this warning ceases to be active.
format: date-time
└─created
stringDate-time in ISO 8601 format representing when the warning was created or issued.
format: date-time

Example Request

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

Response

{
  "latitude": 52.51,
  "longitude": 13.26,
  "language": "en",
  "count": 1,
  "warnings": [
    {
      "element": "LowTemperature",
      "title": "Be alert: code YELLOW for cold",
      "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,
      "countryCode": "DE",
      "active": false,
      "activeStart": "2026-01-20T16:00:00.000Z",
      "activeEnd": "2026-01-21T10:00:00.000Z",
      "created": "2026-01-20T11:45:00.000Z"
    }
  ]
}