GET /api/v1/cities/{slug}/tax-rates
Local business/property tax rates per municipality (Regionalstatistik, Tier A)
Official local real-property tax multipliers per MUNICIPALITY (Regionalstatistik of the German statistical offices, table 71231): gewerbesteuer_hebesatz (trade tax), grundsteuer_a/b/c (property tax, all in %, an unset rate is null) plus the stichtag (as of Dec 31, latest year). Toggle off or no GENESIS credentials -> 200 source_status="disabled"; batch not run -> 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/tax-rates"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/tax-rates");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/tax-rates")
res.raise_for_status()
print(res.json())