GET /api/v1/cities/{slug}/unemployment
Unemployment count and rate per city (GENESIS, Tier A)
Returns a city's unemployment count and rate from the regional statistics (Federal Employment Agency, annual average) in the canonical envelope. Spatial resolution county/county-free city. Account-gated; disabled -> 200 source_status="disabled". No value -> 200 source_status="no_data".
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
slug | path | yes | string |
Code samples
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())