GET /api/v1/cities/{slug}/station-arrivals
Live arrival board for a city's main station, all categories (DB Timetables, Tier A)
Mirror of station-departures: incoming trains at a city's main station with real-time delays (scheduled /plan + changes /fchg merged), each with origin (start station), line, category, planned_time, platform, delay_minutes, cancelled, long_distance. Full coverage across all 84 cities: the main station is derived automatically from the official StaDa catalog. Source: Deutsche Bahn AG (CC BY 4.0). Without credentials OR toggle off -> 200 source_status="disabled"; no arrival in the window -> 200 source_status="no_data". To target a specific station instead of the city's pick, use /api/v1/stations/{eva}/arrivals.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
slug | path | yes | string |
Code samples
curl "https://infranode.dev/api/v1/cities/hamburg/station-arrivals"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/station-arrivals");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/station-arrivals")
res.raise_for_status()
print(res.json())