GET /api/v1/stations/{eva}/arrivals
Live arrivals for any station by EVA, all categories (DB Timetables, Tier A)
Mirror of /stations/{eva}/departures: incoming trains for any DB station via its EVA number (incl. local/regional, origin = start station, real-time delays, disruption messages). 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"; invalid EVA -> 422.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
eva | path | yes | string | EVA-Nummer des Bahnhofs (6-8-stellige Zahl). |
Code samples
curl "https://infranode.dev/api/v1/stations/example/arrivals"const res = await fetch("https://infranode.dev/api/v1/stations/example/arrivals");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/stations/example/arrivals")
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.