GET /api/v1/live/{city}/baustellen
[DEPRECATED] Live roadworks per city (successor: /live/{city}/roadworks)
DEPRECATED (English slugs): superseded by the canonical path GET /api/v1/live/{city}/roadworks. This path stays backward-compatible (unchanged envelope) and carries Deprecation/Link headers pointing to the successor. Please migrate to the new path.
Parameters
| Name | In | Required | Type | Example | Description |
|---|---|---|---|---|---|
city | path | yes | string | bremen |
Code samples
curl "https://infranode.dev/api/v1/live/bremen/baustellen"const res = await fetch("https://infranode.dev/api/v1/live/bremen/baustellen");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/live/bremen/baustellen")
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.