Meteorologisk Institutt
Norwegian Met Institute global forecasts, free with attribution
The Norwegian Meteorological Institute's api.met.no provides global point forecasts, including the compact locationforecast used here. Pass latitude and longitude and it returns hourly temperature, wind, and precipitation as JSON. It requires an identifying User-Agent and is licensed under CC BY 4.0 / NLOD.
GET https://api.met.no/weatherapi/locationforecast/2.0/compact?lat=59.91&lon=10.75
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
10.75,
59.91,
3
]
},
"properties": {
"meta": {
"updated_at": "2026-07-05T09:28:46Z"
},
"timeseries": [
{
"time": "2026-07-05T10:00:00Z",
"data": {
"instant": {
"details": {
"air_temperature": 19.2,
"wind_speed": 4.2
}
}
}
}
]
}
}curl "https://api.met.no/weatherapi/locationforecast/2.0/compact?lat=59.91&lon=10.75"const res = await fetch("https://api.met.no/weatherapi/locationforecast/2.0/compact?lat=59.91&lon=10.75");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.met.no/weatherapi/locationforecast/2.0/compact?lat=59.91&lon=10.75")
print(res.json())/locationforecast/2.0/compact?lat=59.91&lon=10.75PROBEDNorwegian Met Institute global forecasts, free with attribution
/locationforecastLocationforecast — documented GET route.
/locationforecast/1Locationforecast details by ID (example: 1).
/locationforecast?limit=10Locationforecast — documented GET route.
/locationforecast/search?q=testSearch by query parameters.
/locationforecast/2.0/compact?limit=5Compact — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Meteorologisk Institutt: common questions
Is Meteorologisk Institutt free to use?
Yes — Meteorologisk Institutt is a free weather API. Free tier: Free, no key; requires identifying User-Agent. Commercial use is allowed on the free tier.
Does Meteorologisk Institutt need an API key?
No — Meteorologisk Institutt needs no API key or signup. You can call it straight away; rate limits still apply (Throttled; identify via User-Agent and respect caching headers (per docs)).
Can I call Meteorologisk Institutt from the browser?
Yes — Meteorologisk Institutt 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 Meteorologisk Institutt up right now?
As of our last scheduled check, Meteorologisk Institutt is healthy with 100% uptime over 90 days and a 621 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.