GET /api/v1/cities/{slug}/pollen-uv
Pollenflug und UV-Index je Stadt (DWD opendata, Tier A)
Liefert Pollenflug-Gefahrenindex und UV-Index für die Großregion einer Stadt aus DWD opendata im kanonischen Envelope. Die Daten sind nach DWD-Großregionen gegliedert, NICHT stadtgenau (region_name im Payload). Attribution mit modified=true (GeoNutzV). Tier A. Deaktiviert -> 200 source_status="disabled".
Parameter
| Name | In | Pflicht | Typ | Beschreibung |
|---|---|---|---|---|
slug | path | ja | string |
Code-Beispiele
curl "https://infranode.dev/api/v1/cities/hamburg/pollen-uv"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/pollen-uv");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/pollen-uv")
res.raise_for_status()
print(res.json())