GET /api/v1/cities/{slug}/land-values
Amtliche Bodenrichtwerte je Stadt, aggregiert (BORIS, Tier A)
Amtliche Bodenrichtwerte (BORIS, Bodenrichtwert-Informationssystem der Gutachterausschüsse) je Stadt zu einer Bauland-Kennzahl aggregiert (Bauland = Wohnen/Misch/Gewerbe, ohne Wald/Wasser/Landwirtschaft): brw_median_eur_m2, brw_min_eur_m2, brw_max_eur_m2, zone_count, der Bewertungsstichtag und der bbox_radius_deg (Umkreis um das Stadtzentrum). BORIS ist pro Bundesland föderiert (je Land ein WFS). Toggle aus -> 200 source_status="disabled"; Bundesland ohne BORIS-WFS -> 200 source_status="not_covered" (mit covered_cities); abgedeckt, aber kein Snapshot -> 200 source_status="not_ingested".
Parameter
| Name | In | Pflicht | Typ | Beschreibung |
|---|---|---|---|---|
slug | path | ja | string |
Code-Beispiele
curl "https://infranode.dev/api/v1/cities/hamburg/land-values"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/land-values");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/land-values")
res.raise_for_status()
print(res.json())