GET /api/v1/cities/{slug}/sustainability
Sustainability and SDG indicators as a time series (Wegweiser, Tier A)
Municipal sustainability and SDG indicators per municipality from Wegweiser Kommune by Bertelsmann Stiftung (CC0): land take, local recreation areas, renewable energy in new residential buildings, broadband coverage, employment, education, social participation and more. Unlike /indicators (INKAR, latest value only), every indicator here carries the full TIME SERIES, typically 2006 to 2023, plus latest_year/latest_value for the most recent point. Years without a value are absent from the series (never an invented zero). 53 indicators are only available from district level and are therefore missing for municipalities that are part of a district. Toggle off -> 200 source_status="disabled"; no snapshot -> 200 source_status="not_ingested".
Parameters
| Name | In | Required | Type | Example | Description |
|---|---|---|---|---|---|
slug | path | yes | string |
Code samples
curl "https://infranode.dev/api/v1/cities/hamburg/sustainability"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/sustainability");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/sustainability")
res.raise_for_status()
print(res.json())