GET /api/v1/cities/{slug}/unemployment
Arbeitslose und Arbeitslosenquote je Stadt (GENESIS, Tier A)
Liefert Arbeitslose (Anzahl) und Arbeitslosenquote (Prozent) einer Stadt aus der Regionalstatistik (Arbeitsmarktstatistik der Bundesagentur für Arbeit, Jahresdurchschnitt) im kanonischen Envelope. Regionale Auflösung Kreis/kreisfreie Stadt (region_name). Quelle account-gated; deaktiviert -> 200 source_status="disabled". Kein Wert -> 200 source_status="no_data".
Parameter
| Name | In | Pflicht | Typ | Beschreibung |
|---|---|---|---|---|
slug | path | ja | string |
Code-Beispiele
curl "https://infranode.dev/api/v1/cities/hamburg/unemployment"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/unemployment");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/unemployment")
res.raise_for_status()
print(res.json())