Make your first API call
Learn how to call the Current Weather Data API.
The Current Weather Data API provides access to weather data for any location worldwide. In this tutorial, you will make your first call to the the Current Weather Data API.
Create an account
To get started with the Current Weather Data API, you need to create a personal account.
- Go to https://home.openweathermap.org/users/sign_up.
- Fill in the form with the required info.
- Click Create account.
- In the confirmation email, click Verify your email.
Without a verified email address, you won’t be able to use the Current Weather Data API.
Once your email address has been successfully confirmed, you can sign in to your account.
Get an API key
When your account is created, an API key is generated. You need this API key to call the Current Weather Data API.
- Sign in to your account.
- In the top menu, click your name > My API keys.
Your API key is listed under the Key column.
Make your first call
Now that you have your API key, you are ready to make your first call to the Current Weather Data API.
The following example shows how to get the current weather in Paris, France, using cURL in a terminal.
- Open your terminal.
- Copy and paste the following code snippet.
ReplaceAPI_KEY
with your API key from Step 2.The URLhttps://api.openweathermap.org/data/2.5/weather
is the endpoint for the Current Weather Data API.
Thelat
andlon
parameters specify the geographic coordinates for the location you want to retrieve weather data for. In this example, we’re using the coordinates for Paris, France.
Theappid
parameter is where you need to provide your API key.
The JSON response should look something like this:
Let’s have a look at the reponse:
-
The
coord
object includes the longitude (lon
) and latitude (lat
) of the location. -
The
weather
object includes the weather parameters for the location:id
is the weather condition identifier. For a full list of weather conditions identifiers, see .main
corresponds to the group of weather parameters (weather.main
).description
is the weather condition.icon
is the related weather icon . For a full list of weather icons, see .
-
The main object includes temperature and pressure info:
temp
is the current Kelvin temperature.feels_like
is the perceived temperature.temp_min
andtemp_max
are the minimum and maximum temperatures at the moment, respectively. Both temperatures are only available for large megalopolises and urban areas. At the time of the API call,289.28
is the Kelvin temperature (main.temp
).
-
The
wind
object includes wind speed (speed
) in meters/second and wind direction (deg
) in degrees. -
The
clouds
object shows the cloudiness percentage (all
). -
The
sys
object includes info about the location’s country (country
) as well as sunrise (sunrise
) and sunset (sunset
) times in Unix time (UTC).
For a detailed description of the API response, see the API reference documentation.
Next steps
You’ve successfully made your first call to the Current Weather Data API. You can now explore more features offered by the API, such as:
- Getting data in HTML and XML formats
- Getting data for imperial and metric systems of measurement