GET /api/v1/live/hamburg/departures
Live public-transit departures for Hamburg per station (HVV Geofox GTI)
Returns the real-time departure board of an HVV station from the HVV Geofox GTI API: per departure the line, direction, scheduled offset in minutes, delay in seconds and per-line service alerts. City fixed to hamburg (Geofox only covers the HVV area). The station query parameter is a station name (default Hauptbahnhof), resolved internally via checkName to the Geofox station id. The meta block additionally carries as_of and refresh_seconds (60). Tier C live-only: the Geofox license is not open (source license = unknown), live data only, kept only briefly in the Redis cache. Disabled or missing credentials -> 200 source_status="disabled"; unknown station or no departures -> 200 source_status="no_data"; dead upstream with no cache -> 503 with a hint.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
station | query | no | string | HVV-Stationsname (Default "Hamburg Hauptbahnhof"). |
Code samples
curl "https://infranode.dev/api/v1/live/hamburg/departures"const res = await fetch("https://infranode.dev/api/v1/live/hamburg/departures");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/live/hamburg/departures")
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.