Transport for Norway

Norway-wide stops and journeys from Entur's open data

🚆 TransportUNMONITORED
AUTH NONECORS AGENT ?HTTPS COMMERCIAL

Entur's national mobility platform exposes open geocoding and journey planning over Norway's public transport. The geocoder autocomplete resolves place and stop names into coordinates as JSON, no key needed. Entur asks callers to send an ET-Client-Name header to avoid rate limiting.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
GET https://api.entur.io/geocoder/v1/autocomplete?text=Oslo&size=1

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          10.748128,
          59.911076
        ]
      },
      "properties": {
        "id": "NSR:GroupOfStopPlaces:1",
        "layer": "address",
        "name": "Oslo",
        "county": "Oslo"
      }
    }
  ]
}
Call itcurl · fetch · python
curl "https://api.entur.io/geocoder/v1/autocomplete?text=Oslo&size=1"
const res = await fetch("https://api.entur.io/geocoder/v1/autocomplete?text=Oslo&size=1");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://api.entur.io/geocoder/v1/autocomplete?text=Oslo&size=1")
print(res.json())
Endpoints · 6On scheduleFULL DOCS ↗
On schedule — GET /geocoder/v1/autocomplete?text=Oslo&size=1 awaits first probe
GET/geocoder/v1/autocomplete?text=Oslo&size=1PROBED

Norway-wide stops and journeys from Entur's open data

GET/geocoder

Geocoder — documented GET route.

GET/geocoder/1

Geocoder details by ID (example: 1).

GET/geocoder?limit=10

Geocoder — documented GET route.

GET/geocoder/search?q=test

Search by query parameters.

GET/geocoder/v1/autocomplete?limit=5

Autocomplete — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Not tracked yet. Shape-change history starts once this API joins our probe schedule.

Transport for Norway: common questions

Is Transport for Norway free to use?

Yes — Transport for Norway is a free transport API. Free tier: Free — open data, no key; ET-Client-Name header requested. Commercial use is allowed on the free tier.

Does Transport for Norway need an API key?

No — Transport for Norway needs no API key or signup. You can call it straight away; rate limits still apply (Rate-limited for unidentified consumers (no numeric threshold published)).

Can I call Transport for Norway from the browser?

Yes — Transport for Norway returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is Transport for Norway up right now?

Transport for Norway is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.