Get started with HERE Destination Weather API v1
This section outlines how to get started quickly using the HERE Destination Weather API.
Note
This section provides information on the minimum setup required to quickly begin using the HERE Destination Weather API. For more detailed information on HERE account setup, project creation, service linking, app registration, and authentication, see the Identity and Access Manager Guide.
Get a HERE account
Obtain access to the HERE platform through your organization administrator's invitation or get started for free.
- If your company has already established a HERE platform organization, contact your organization admin who can invite you to join the organization.
- If your company hasn’t established a HERE platform organization yet, you can get started for free. For more information, see the HERE platform pricing.
Get an API key
To get an API key, follow these steps:
- Sign in to the HERE platform using your HERE account.
- Select the Access Manager from the launcher.
- Select the Apps tab and click Register new app.
- Enter a name for the app.
- Click Register. The HERE platform creates a new app with a unique app ID.
- On the Credentials tab, select API Keys and then click Create API key to generate a maximum of two API Keys for your application authentication credentials. The API key is created and displayed.
Send a request
The following is a HERE Destination Weather API request example which consists of a single GET request to retrieve a weather report for Berlin, Germany, using an API Key.
curl [url-base](https://weather.cc.api.here.com) [url-path](/weather/1.0/report.json)
?product=observation
&name=Berlin-Tegel
&apiKey={YOUR_API_KEY}</codeblock>The following is a HERE Destination Weather API request example which consists of a single GET request to retrieve a weather report for Berlin, Germany, using an OAuth token.
curl https://weather.cc.api.here.com/weather/1.0/report.json
?product=observation
&name=Berlin-Tegel
-H "Authorization: Bearer {YOUR_TOKEN}"Next steps
We encourage you to view the tutorials, which walk you through various weather scenarios, starting with the simplist, Weather Report. Parameters used in the tutorials are described in detail in the API Reference for Weather Report.
Updated 14 days ago