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
Parameter | Type | Description |
---|---|---|
id | NSR StopPlace ID | The NSR ID of the stop place to link to |
Linking to a Travel Search
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
Parameter | Type | Description |
---|---|---|
startId | NSR StopPlace ID | The NSR ID of the origin. |
startLat | number | The latitude value for the origin. |
startLon | number | The longitude value for the origin. |
stopId | NSR StopPlace ID | The NSR ID of the destination. |
stopLat | number | The latitude value for the destination. |
stopLon | number | The longitude value for the destination. |
transportModes | comma-sep list of filters | The transport filters to allow. If this is not supplied, all are allowed. See available filter values below. |
date | milliseconds since epoch (1970) | The search time to use. If omitted, "now" is used. |
timepickerMode | departAfter or arriveBefore | Whether to search for departures leaving after date (default) or for arrivals before date . |
Filters
Available values for the transportModes
parameter above.
Filter | Description |
---|---|
bus | bus rides (not including airport express buses) |
tram | tram rides |
rail | rail (train) rides (not including airport express trains) |
metro | metro (subway) rides |
water | all kinds of transport modes on water (ferry, carferry, etc.) |
flytog | airport express trains |
flybuss | airport 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