GuidesAPI Reference
Guides

How to construct a request in the HERE Destination Weather API

A request to the HERE Destination Weather API includes the basic elements shown in the following table and resource-specific parameters.

Standard - Construct a request

Construct a request with the standard HERE Destination Weather API.

Basic request elements

ElementValue/ExampleDescription
Base URLhttps://weather.hereapi.comProduction environment
Path/v3
ResourceReportUses HTTP GET
Formatjson
Parametersproducts, locationFor more information on query parameters in general, see the sub-sections under Resources.
API key&apiKey=[apiKey]JZlojTwKtPLbrQ9EGznlASubstitute your own unique apiKey. For more details on authentication, see the Identity and Access Management Developer Guide.
Authorization Header-H "Authorization: Bearer {YOUR_TOKEN}"For more information on authentication, see the Identity and Access Management Developer Guide.

Premium - Construct a request

A request to the premium HERE Destination Weather API includes the basic elements shown in the following table and resource-specific parameters.

Basic request elements

ElementValue/ExampleDescription
Base URLhttps://weather.hereapi.comProduction environment
Path/v3/
Resourcetile/{zoom}/{x}/{y}/{imageType}
alerts
Uses HTTP GET
Uses HTTP POST
Path parameters (example)/9/115/191/radarGet Doppler radar image for tile 115,191, zoom 9
Body payload{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ 151.2011021, -33.8831135 ] }, "properties": { "width": 100000 } } ] }Car position defined as point geometry (latitude, longitude)
and optionaly raidus in meters as feature width properties
Authorization HeaderAuthorization: Bearer <token>For more information on authentication, see the Identity and Access Management Developer Guide.