GET /api/v1/live/hamburg/verkehrslage
[DEPRECATED] Live traffic situation for Hamburg (successor: /live/hamburg/traffic-situation)
DEPRECATED (English slugs): superseded by the canonical path GET /api/v1/live/hamburg/traffic-situation. 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/hamburg/verkehrslage"const res = await fetch("https://infranode.dev/api/v1/live/hamburg/verkehrslage");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/live/hamburg/verkehrslage")
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.