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): trade_tax_rate, property_tax_a/b/c (all in %, an unset rate is null) plus reference_date (as of Dec 31, latest year). The equivalent German fields gewerbesteuer_hebesatz, grundsteuer_a/b/c and stichtag are deprecated and will be removed no earlier than 30 days after the announcement. Toggle off or no GENESIS credentials -> 200 source_status="disabled"; batch not run -> 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/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())