GET /api/v1/cities/{slug}/indicators
Socioeconomic indicators per city (INKAR/BBSR, Tier A)
A curated, broad set of socioeconomic indicators per district/independent city (labour market, economy, income, demographics, housing, accessibility, transport, education, health, land use), from the open INKAR wizard API of the BBSR. Each indicator carries its latest annual value with label (incl. unit), value, year and category. Source: BBSR / INKAR (DL-DE/BY 2.0). Toggle off -> 200 source_status="disabled"; no snapshot for the district -> 200 source_status="not_ingested".
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
slug | path | yes | string |
Code samples
curl "https://infranode.dev/api/v1/cities/hamburg/indicators"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/indicators");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/indicators")
res.raise_for_status()
print(res.json())