Deep Links to the Entur App

The Entur app can automatically open some Universal Links in the app. This article explains how you can create such links.

If the app is not installed, or if opened on a computer, the link will open on the entur.no website, performing the same operation.

Linking to a Stop Place

This link takes the user to the departure board for a specified StopPlace, where the departures for this stop place can be found.

It takes one query parameter id, which is an NSR Stop Place ID. You can find your ID using the Geocoder API here.

Example (Oslo S):

https://entur.no/nearby-stop-place-detail?id=NSR:StopPlace:59872

Available Parameters

ParameterTypeDescription
idNSR StopPlace IDThe NSR ID of the stop place to link to

This link will start a travel search from some place to another.

You can choose to either use an ID (startId/stopId) or coordinates (startLon+startLat / stopLon+stopLat). If you omit either the start or stop parameters, the user's own location will be used, if available.

Examples (from Nationaltheatret to Oslo S):

Description Link
User's Location – Oslo S https://entur.no/travel-result?stopId=NSR:StopPlace:59872
Nationaltheatret – Oslo S https://entur.no/travel-result?startId=NSR:StopPlace:58404&stopId=NSR:StopPlace:59872
Oslo S – User's Location https://entur.no/travel-result?startId=NSR:StopPlace:58404
User's Location – Coordinate https://entur.no/travel-result?stopLat=59.8991327&stopLon=10.7610508

Available Parameters

ParameterTypeDescription
startIdNSR StopPlace IDThe NSR ID of the origin.
startLatnumberThe latitude value for the origin.
startLonnumberThe longitude value for the origin.
stopIdNSR StopPlace IDThe NSR ID of the destination.
stopLatnumberThe latitude value for the destination.
stopLonnumberThe longitude value for the destination.
transportModescomma-sep list of filtersThe transport filters to allow. If this is not supplied, all are allowed. See available filter values below.
datemilliseconds since epoch (1970)The search time to use. If omitted, "now" is used.
timepickerModedepartAfter or arriveBeforeWhether to search for departures leaving after date (default) or for arrivals before date.

Filters

Available values for the transportModes parameter above.

FilterDescription
busbus rides (not including airport express buses)
tramtram rides
railrail (train) rides (not including airport express trains)
metrometro (subway) rides
waterall kinds of transport modes on water (ferry, carferry, etc.)
flytogairport express trains
flybussairport express buses

Combining these will work the same way as using the filter toggles on entur.no or in the Entur app. Provide the parameter as a comma-separated string:

&transportModes=bus,tram,rail