Transport for Norway
Norway-wide stops and journeys from Entur's open data
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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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"
}
}
]
}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())/geocoder/v1/autocomplete?text=Oslo&size=1PROBEDNorway-wide stops and journeys from Entur's open data
/geocoderGeocoder — documented GET route.
/geocoder/1Geocoder details by ID (example: 1).
/geocoder?limit=10Geocoder — documented GET route.
/geocoder/search?q=testSearch by query parameters.
/geocoder/v1/autocomplete?limit=5Autocomplete — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
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.