GET /api/v1/live/hamburg/verkehrslage
Live traffic situation for Hamburg (City of Hamburg open data, key-less)
Returns Hamburg's real-time traffic situation in the live envelope: a network summary (summary.total and by_state counts per state free/dense/sluggish/jammed) plus the prioritised, capped list of non-free-flowing road segments (measurements with state and midpoint coordinate). Source is the City of Hamburg's direct, key-less open dataset (api.hamburg.de, OGC API Features), not the Mobilithek. The meta block additionally carries as_of (data timestamp) and refresh_seconds (update cadence). Source disabled -> 200 source_status="disabled" (never 5xx); no data -> 200 source_status="no_data". Licence Data licence Germany Attribution 2.0. Live data only, kept in the Redis cache.
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.