GET /api/v1/live/koeln/umweltzone
[DEPRECATED] Live low-emission zone for Cologne (successor: /live/koeln/low-emission-zone)
DEPRECATED (English slugs): superseded by the canonical path GET /api/v1/live/koeln/low-emission-zone. This path stays backward-compatible (unchanged envelope) and carries Deprecation/Link headers pointing to the successor. Please migrate to the new path.
Parameters
This endpoint takes no parameters.
Code samples
curl "https://infranode.dev/api/v1/live/koeln/umweltzone"const res = await fetch("https://infranode.dev/api/v1/live/koeln/umweltzone");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/live/koeln/umweltzone")
res.raise_for_status()
print(res.json()) Try it
No live console is available for this endpoint. It is an operational or demo operation (for example a forced error) and is only documented here. Use the code samples above to call it directly.