Back to data catalog
Weather API
Global weather forecasts and information about sunrise and sunset
OpenAPI Spec
Specification of all endpoints available in the weather api.
Github
Explore the source code behind the weather api.
More info
Data sources
The data for this Weather API is exclusively retrieved from https://api.met.no, renowned for its comprehensive and accurate meteorological data. This source provides users with dependable weather forecasts and precise information on sunrise and sunset times. Unless specified otherwise, all data and products are licensed under the Norwegian Licence for Open Government Data (NLOD) 2.0 and Creative Commons 4.0 BY International licences.
Processing
The data obtained from the Norwegian Meteorological Institute is presented as is, without any further processing or modification.
Examples
Example 1
Retrieving weather forecast for a given location for the next 9 days.
1import io.openepi.weather.api.WeatherApi;
2import io.openepi.weather.model.METJSONForecast;
3import io.openepi.common.ApiException;
4import java.math.BigDecimal;
5
6public class Main {
7 public static void main(String[] args) {
8 BigDecimal lat = new BigDecimal("52.52");
9 BigDecimal lon = new BigDecimal("13.40");
10
11 WeatherApi api = new WeatherApi();
12 try {
13 METJSONForecast response = api.getForecastLocationforecastGet(lat, lon, null);
14
15 // Get the instant air temperature
16 BigDecimal airTemperature = response.getProperties().getTimeseries().get(0).getData().getInstant().getDetails().getAirTemperature();
17 System.out.println("Air temperature: " + airTemperature);
18 } catch (ApiException e) {
19 System.err.println("Exception when calling WeatherApi#getForecastLocationforecastGet");
20 e.printStackTrace();
21 }
22 }
23}
1const response = await fetch(
2 "https://api.openepi.io/weather/locationforecast?lat=52.520008&lon=13.404954"
3)
4const json = await response.json()
5
6// Get the instant air temperature
7const airTemperature =
8 json.properties.timeseries[0].data.instant.details.air_temperature
9
10console.log(`Air temperature: ${airTemperature}`)
11
1from httpx import Client
2
3with Client() as client:
4 response = client.get(
5 url="https://api.openepi.io/weather/locationforecast",
6 params={"lat": 52.520008, "lon": 13.404954},
7 )
8
9 # Get the instant air temperature
10 json = response.json()
11 air_temperature = json["properties"]["timeseries"][0]["data"]["instant"]["details"][
12 "air_temperature"
13 ]
14
15 print(f"Air temperature: {air_temperature}")
16