v6.db.transport.rest API documentation

v6.db.transport.rest is a REST API. Data is being returned as JSON.

You can just use the API without authentication. There's a rate limit of 100 request/minute (burst 200 requests/minute) set up.

OpenAPI playground

Note: The examples snippets in this documentation uses the url-encode CLI tool of the url-decode-encode-cli package for URL-encoding.

Routes

Note: These routes only wrap hafas-client@6 methods, check their docs for more details.

GET /locations

Uses hafasClient.locations() to find stops/stations, POIs and addresses matching query.

Query Parameters

parameterdescriptiontypedefault value
queryRequired.stringโ€“
fuzzyFind more than exact matches?booleantrue
resultsHow many stations shall be shown?integer10
stopsShow stops/stations?booleantrue
addressesShow addresses?booleantrue
poiShow points of interest?booleantrue
linesOfStopsParse & return lines of each stop/station?booleanfalse
languageLanguage of the results.stringen
profiledb-vendo-client profile to use for this requeststringdbnav
prettyPretty-print JSON responses?booleantrue

Example

curl 'https://v6.db.transport.rest/locations?query=halle&results=1' -s | jq
[
	{
		"type": "stop",
		"id": "8010159",
		"name": "Halle (Saale) Hbf",
		"location": {
			"type": "location",
			"id": "8010159",
			"latitude": 51.477079,
			"longitude": 11.98699
		},
		"products": {
			"nationalExpress": true,
			"national": true,
			// โ€ฆ
		}
	}
]

GET /stops/:id

Uses hafasClient.stop() to find a stop/station by ID.

Query Parameters

parameterdescriptiontypedefault value
linesOfStopsParse & expose lines at each stop/station?booleanfalse
languageLanguage of the results.stringen
profiledb-vendo-client profile to use for this requeststringdbnav
prettyPretty-print JSON responses?booleantrue

Example

curl 'https://v6.db.transport.rest/stops/8010159' -s | jq
{
	"type": "stop",
	"id": "8010159",
	"ids": {
		"dhid": "de:15002:8010159",
		"MDV": "8010159",
		"NASA": "8010159"
	},
	"name": "Halle (Saale) Hbf",
	"location": {
		"type": "location",
		"id": "8010159",
		"latitude": 51.477079,
		"longitude": 11.98699
	},
	"products": { /* โ€ฆ */ },
	// โ€ฆ
}

GET /stops/:id/departures

Uses hafasClient.departures() to get departures at a stop/station.

Query Parameters

parameterdescriptiontypedefault value
whenDate & time to get departures for. See date/time parameters.date+timenow
directionFilter departures by direction.stringย 
durationShow departures for how many minutes?integer10
resultsMax. number of departures.integer*whatever HAFAS wants
linesOfStopsParse & return lines of each stop/station?booleanfalse
remarksParse & return hints & warnings?booleantrue
languageLanguage of the results.stringen
includeRelatedStationsFetch departures at related stops, e.g. those that belong together on the metro map?booleantrue
stopoversFetch & parse next stopovers of each departure?booleanfalse
moreStopsAlso include departures/arrivals for up to nine comma-separated station evaNumbers (not supported with dbnav and dbweb)string``
profiledb-vendo-client profile to use for this requeststringdbnav
nationalExpressInclude InterCityExpress (ICE)?booleantrue
nationalInclude InterCity & EuroCity (IC/EC)?booleantrue
regionalExpressInclude RegionalExpress & InterRegio (RE/IR)?booleantrue
regionalInclude Regio (RB)?booleantrue
suburbanInclude S-Bahn (S)?booleantrue
busInclude Bus (B)?booleantrue
ferryInclude Ferry (F)?booleantrue
subwayInclude U-Bahn (U)?booleantrue
tramInclude Tram (T)?booleantrue
taxiInclude Group Taxi (Taxi)?booleantrue
prettyPretty-print JSON responses?booleantrue

Example

# at Halle (Saale) Hbf, in direction Berlin Sรผdkreuz
curl 'https://v6.db.transport.rest/stops/8010159/departures?direction=8011113&duration=120' -s | jq
[
	{
		"tripId": "1|317591|0|80|1052020",
		"direction": "Berlin Hbf (tief)",
		"line": {
			"type": "line",
			"id": "ice-702",
			"name": "ICE 702",
			"mode": "train",
			"product": "nationalExpress",
			// โ€ฆ
		},

		"when": "2020-05-01T21:06:00+02:00",
		"plannedWhen": "2020-05-01T21:06:00+02:00",
		"delay": 0,
		"platform": "8",
		"plannedPlatform": "8",

		"stop": {
			"type": "stop",
			"id": "8010159",
			"name": "Halle (Saale) Hbf",
			"location": { /* โ€ฆ */ },
			"products": { /* โ€ฆ */ },
		},

		"remarks": [],
		// โ€ฆ
	}
]

GET /stops/:id/arrivals

Works like /stops/:id/departures, except that it uses hafasClient.arrivals() to arrivals at a stop/station.

Query Parameters

parameterdescriptiontypedefault value
whenDate & time to get departures for. See date/time parameters.date+timenow
directionFilter departures by direction.stringย 
durationShow departures for how many minutes?integer10
resultsMax. number of departures.integerwhatever HAFAS wants
linesOfStopsParse & return lines of each stop/station?booleanfalse
remarksParse & return hints & warnings?booleantrue
languageLanguage of the results.stringen
includeRelatedStationsFetch departures at related stops, e.g. those that belong together on the metro map?booleantrue
stopoversFetch & parse next stopovers of each departure?booleanfalse
moreStopsAlso include departures/arrivals for up to nine comma-separated station evaNumbers (not supported with dbnav and dbweb)string``
profiledb-vendo-client profile to use for this requeststringdbnav
nationalExpressInclude InterCityExpress (ICE)?booleantrue
nationalInclude InterCity & EuroCity (IC/EC)?booleantrue
regionalExpressInclude RegionalExpress & InterRegio (RE/IR)?booleantrue
regionalInclude Regio (RB)?booleantrue
suburbanInclude S-Bahn (S)?booleantrue
busInclude Bus (B)?booleantrue
ferryInclude Ferry (F)?booleantrue
subwayInclude U-Bahn (U)?booleantrue
tramInclude Tram (T)?booleantrue
taxiInclude Group Taxi (Taxi)?booleantrue
prettyPretty-print JSON responses?booleantrue

Example

# at Halle (Saale) Hbf, 10 minutes
curl 'https://v6.db.transport.rest/stops/8010159/arrivals?duration=10' -s | jq

GET /journeys

Uses hafasClient.journeys() to find journeys from A (from) to B (to).

from (A), to (B), and the optional via must each have one of these formats:

Pagination

Given a response, you can also fetch more journeys matching the same criteria. Instead of from*, to* & departure/arrival, pass earlierRef from the first response as earlierThan to get journeys "before", or laterRef as laterThan to get journeys "after".

Pagination isn't fully functioning with the default routingMode.

Check the hafasClient.journeys() docs for more details.

Routing mode

The routingMode parameter influences which data the system uses to compute the query results. The default is REALTIME and does not include canceled journeys. If you want canceled journeys to be included in the response, use HYBRID instead.

Furthermore, REALTIME doesn't support Pagination fully. If you need fully functioning pagination, use HYBRID instead.

The hafas-client repository has more details on the different routing modes.

Query Parameters

parameterdescriptiontypedefault value
departureCompute journeys departing at this date/time. Mutually exclusive with arrival. See date/time parameters.date+timenow
arrivalCompute journeys arriving at this date/time. Mutually exclusive with departure. See date/time parameters.date+timenow
earlierThanCompute journeys "before" an ealierRef.stringย 
laterThanCompute journeys "after" an laterRef.stringย 
resultsMax. number of journeys.integer3
stopoversFetch & parse stopovers on the way?booleanfalse
transfersMaximum number of transfers.integerlet HAFAS decide
transferTimeMinimum time in minutes for a single transfer.integer0
accessibilitypartial or complete.stringnot accessible
bikeCompute only bike-friendly journeys?booleanfalse
startWithWalkingConsider walking to nearby stations at the beginning of a journey?booleantrue
walkingSpeedslow, normal or fast.stringnormal
ticketsReturn information about available tickets?booleanfalse
polylinesFetch & parse a shape for each journey leg?booleanfalse
subStopsParse & return sub-stops of stations?booleantrue
entrancesParse & return entrances of stops/stations?booleantrue
remarksParse & return hints & warnings?booleantrue
scheduledDaysParse & return dates each journey is valid on?booleanfalse
languageLanguage of the results.stringen
firstClassSearch for first-class options?booleanfalse
loyaltyCardType of loyalty card in use.stringnone
ageAge of travellerintegeradult
notOnlyFastRoutesIf true, also show routes that are mathematically non-optimalbooleanfalse
bestpriceSearch for lowest prices across the entire daybooleanfalse
deutschlandTicketDiscountCalculate ticket prices assuming Deutschlandticket is presentbooleanfalse
deutschlandTicketConnectionsOnlyOnly return journeys that can be used with the Deutschlandticketbooleanfalse
profiledb-vendo-client profile to use for this requeststringdbnav
nationalExpressInclude InterCityExpress (ICE)?booleantrue
nationalInclude InterCity & EuroCity (IC/EC)?booleantrue
regionalExpressInclude RegionalExpress & InterRegio (RE/IR)?booleantrue
regionalInclude Regio (RB)?booleantrue
suburbanInclude S-Bahn (S)?booleantrue
busInclude Bus (B)?booleantrue
ferryInclude Ferry (F)?booleantrue
subwayInclude U-Bahn (U)?booleantrue
tramInclude Tram (T)?booleantrue
taxiInclude Group Taxi (Taxi)?booleantrue
prettyPretty-print JSON responses?booleantrue

Examples

# stop/station to POI
curl 'https://v6.db.transport.rest/journeys?from=8010159&to.id=991561765&to.latitude=51.483641&to.longitude=11.980841' -s | jq
# without buses, with ticket info
curl 'https://v6.db.transport.rest/journeys?from=โ€ฆ&to=โ€ฆ&bus=false&tickets=true' -s | jq

GET /journeys/:ref

Uses hafasClient.refreshJourney() to "refresh" a journey, using its refreshToken.

The journey will be the same (equal from, to, via, date/time & vehicles used), but you can get up-to-date realtime data, like delays & cancellations.

Query Parameters

parameterdescriptiontypedefault value
stopoversFetch & parse stopovers on the way?booleanfalse
ticketsReturn information about available tickets?booleanfalse
polylinesFetch & parse a shape for each journey leg?booleanfalse
subStopsParse & return sub-stops of stations?booleantrue
entrancesParse & return entrances of stops/stations?booleantrue
remarksParse & return hints & warnings?booleantrue
scheduledDaysParse & return dates the journey is valid on?booleanfalse
languageLanguage of the results.stringen
firstClassSearch for first-class options?booleanfalse
loyaltyCardType of loyalty card in use.stringnone
ageAge of travellerintegeradult
notOnlyFastRoutesIf true, also show routes that are mathematically non-optimalbooleanfalse
bestpriceSearch for lowest prices across the entire daybooleanfalse
deutschlandTicketDiscountCalculate ticket prices assuming Deutschlandticket is presentbooleanfalse
deutschlandTicketConnectionsOnlyOnly return journeys that can be used with the Deutschlandticketbooleanfalse
profiledb-vendo-client profile to use for this requeststringdbnav
prettyPretty-print JSON responses?booleantrue

Example

# get the refreshToken of a journey
journey=$(curl 'https://v6.db.transport.rest/journeys?from=โ€ฆ&to=โ€ฆ&results=1' -s | jq '.journeys[0]')
refresh_token=$(echo $journey | jq -r '.refreshToken')

# refresh the journey
curl "https://v6.db.transport.rest/journeys/$(echo $refresh_token | url-encode)" -s | jq

GET /trips/:id

Uses hafasClient.trip() to fetch a trip by ID.

A trip is a specific vehicle, stopping at a series of stops at specific points in time. Departures, arrivals & journey legs reference trips by their ID.

Query Parameters

parameterdescriptiontypedefault value
stopoversFetch & parse stopovers on the way?booleantrue
remarksParse & return hints & warnings?booleantrue
polylineFetch & parse the geographic shape of the trip?booleanfalse
languageLanguage of the results.stringen
profiledb-vendo-client profile to use for this requeststringdbnav
prettyPretty-print JSON responses?booleantrue

Example

# get the trip ID of a journey leg
journey=$(curl 'https://v6.db.transport.rest/journeys?from=โ€ฆ&to=โ€ฆ&results=1' -s | jq '.journeys[0]')
journey_leg=$(echo $journey | jq -r '.legs[0]')
trip_id=$(echo $journey_leg | jq -r '.tripId')

# fetch the trip
curl "https://v6.db.transport.rest/trips/$(echo $trip_id | url-encode)" -s | jq

GET /stations

If the query parameter is used, it will use db-stations-autocomplete@2 to autocomplete Deutsche Bahn-operated stops/stations. Otherwise, it will filter the stops/stations in db-stations@3.

Instead of receiving a JSON response, you can request newline-delimited JSON by sending Accept: application/x-ndjson.

Query Parameters

parameterdescriptiontypedefault value
queryFind stations by name using db-stations-autocomplete@2.stringโ€“
limitIf query is used: Return at most n stations.number3
fuzzyIf query is used: Find stations despite typos.booleanfalse
completionIf query is used: Autocomplete stations.booleantrue

Examples

# autocomplete using db-stations-autocomplete
curl 'https://v6.db.transport.rest/stations?query=dammt' -s | jq
{
	"8002548": {
		"id": "8002548",
		"relevance": 0.8572361756428573,
		"score": 9.175313823998414,
		"weight": 1212,
		"type": "station",
		"ril100": "ADF",
		"name": "Hamburg Dammtor",
		"location": {
			"type": "location",
			"latitude": 53.560751,
			"longitude": 9.989566
		},
		"operator": {
			"type": "operator",
			"id": "hamburger-verkehrsverbund-gmbh",
			"name": "BWVI"
		},
		"address": {
			"city": "Hamburg",
			"zipcode": "20354",
			"street": "Dag-Hammarskjรถld-Platz 15"
		},
		// โ€ฆ
	},
	// โ€ฆ
}
# filter db-stations by `hasParking` property
curl 'https://v6.db.transport.rest/stations?hasParking=true' -s | jq
{
	"8000001": {
		"type": "station",
		"id": "8000001",
		"ril100": "KA",
		"name": "Aachen Hbf",
		"weight": 653.75,
		"location": { /* โ€ฆ */ },
		"operator": { /* โ€ฆ */ },
		"address": { /* โ€ฆ */ },
		// โ€ฆ
	},
	// โ€ฆ
}
# filter db-stations by `hasDBLounge` property, get newline-delimited JSON
curl 'https://v6.db.transport.rest/stations?hasDBLounge=true' -H 'accept: application/x-ndjson' -s | jq

GET /stations/:id

Returns a stop/station from db-stations.

Query Parameters

Example

# lookup Halle (Saale) Hbf
curl 'https://v6.db.transport.rest/stations/8010159' -s | jq
curl 'https://v6.db.transport.rest/stations/LH' -s | jq # RIL100/DS100
curl 'https://v6.db.transport.rest/stations/LHG' -s | jq # RIL100/DS100
{
	"type": "station",
	"id": "8010159",
	"additionalIds": ["8098159"],
	"ril100": "LH",
	"nr": 2498,
	"name": "Halle (Saale) Hbf",
	"weight": 815.6,
	"location": { /* โ€ฆ */ },
	"operator": { /* โ€ฆ */ },
	"address": { /* โ€ฆ */ },
	"ril100Identifiers": [
		{
			"rilIdentifier": "LH",
			// โ€ฆ
		},
		// โ€ฆ
	],
	// โ€ฆ
}

GET /locations/nearby

Query Parameters

parameterdescriptiontypedefault value
latitudeRequired.numberโ€“
longitudeRequired.numberโ€“
resultsmaximum number of resultsinteger8
distancemaximum walking distance in metersintegerโ€“
stopsReturn stops/stations?booleantrue
poiReturn points of interest?booleanfalse
linesOfStopsParse & expose lines at each stop/station?booleanfalse
languageLanguage of the results.stringen
profiledb-vendo-client profile to use for this requeststringdbnav
prettyPretty-print JSON responses?booleantrue

Date/Time Parameters

Possible formats: