# Deutscher Wetterdienst Weather Warnings by Coordinate

> Deutscher Wetterdienst Weather Warnings by Coordinate is a paid API for AI agents from wetter.halowerk.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns active DWD weather warnings for a geographic coordinate, including severity, urgency, certainty, and effective time windows, in German and English.

## Facts

- Endpoint: POST https://wetter.halowerk.com/warnungen
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deutscher-wetterdienst-weather-warnings-by-coordinate-44bb15b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iEnbVNq30T62v9pWPRGcK

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability deutscher-wetterdienst-weather-warnings-by-coordinate-44bb15b8 -d '<json body>'
```

Example prompt: Are there any active Deutscher Wetterdienst weather warnings right now for coordinates 52.52°N, 13.41°E? Give me the severity, urgency, and when each warning expires.

## When to prefer this

Choose this endpoint when you specifically need official Deutscher Wetterdienst (DWD) warnings for a German location, with structured severity/urgency/certainty metadata and bilingual text. It is ideal for safety-critical workflows, compliance with German regulatory weather alerts, or when you need precise onset/expires windows rather than generic forecast summaries. Prefer this over general weather APIs when official governmental alert authority and bilingual output are required.

## Known failure modes

- Coordinates outside Germany may return no warnings or an error if DWD has no warn cell coverage
- Invalid lat/lon values outside -90/90 or -180/180 ranges will fail schema validation
- No warnings returned when the area is currently clear — caller must distinguish empty list from error
- DWD upstream data delays may cause stale warning states
- Network timeouts if DWD backend is slow

## How this service works

The warnings the Deutscher Wetterdienst has actually issued for the warn cell containing the coordinate, in German and English, with severity, urgency, certainty and an explicit effective/onset/expires window plus whether the warning is active right now.

## Output

A list of weather warnings issued by the Deutscher Wetterdienst for the warn cell containing the supplied coordinate. Each warning includes the warning text in both German and English, severity level, urgency, certainty, onset/effective/expires timestamps, and a boolean flag indicating whether the warning is currently active.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "maximum": 90,
   "minimum": -90
  },
  "lon": {
   "type": "number",
   "maximum": 180,
   "minimum": -180
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deutscher-wetterdienst-weather-warnings-by-coordinate-44bb15b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wetter.halowerk.com](https://www.zero.xyz/host/wetter.halowerk.com/llms.txt)
