Get started
This section outlines how to quickly get started using the HERE Routing API on the HERE platform.
- Get a HERE account
- Create a project
- Get an API key
- Send a request
- Next steps
Note
This section provides information on the minimum setup required to quickly begin using the HERE Routing API. For more detailed information on HERE account setup, project creation, app registration, and authentication, see the Identity & Access Management Developer Guide.
Get a HERE Account
You can get started with a free HERE platform account from the flexible HERE Base Plan. For more information, see the HERE Base Plan Pricing. Alternatively, if your company has already established a HERE platform organization, contact your organization admin who can invite you to join your company's organization.
Create a project
To create a project, follow these steps:
- Sign in to the HERE platform using your HERE account.
- Open the Projects Manager from the launcher.
- Click Create new project.
- Enter a name for the project. Project names don't have to be unique.
- Enter a project ID. Project IDs must be unique within an organization and cannot be changed for the lifetime of the organization. Project IDs must be between 4 and 16 characters in length.
- Optional: Enter a description.
- Click Save.
- On the Resources tab, select Services and then click Link a Service.
- Search for the HERE ROUTING service and click Link.
- Click Done.
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.
- Optional: Enter a description for the app.
- Optional: Select the project you created in the previous procedure from the Default access to a project field.
- 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
A route calculation consists of a single GET request. The only required parameters are an origin and a destination, given by two pairs of WGS84 coordinates in the form <latitude>,<longitude>
; and a transportation mode, which can be bicycle
, bus
, car
,pedestrian
,scooter
, taxi
, or truck
.
The following request will calculate a car route with default options:
curl -X GET \
'https://router.hereapi.com/v8/routes?transportMode=car&origin=52.5308,13.3847&destination=52.5264,13.3686&return=summary&apikey={YOUR_API_KEY}'
Note
Postman users can import these examples: Import > Paste Raw Text
If the route calculation was successful, the response contains the calculated route with departure and arrival times in one or more sections. Additional summary information, such as the length and duration are also provided.
{
"routes": [
{
"id": "cc0441f1-b8ca-4410-95d5-bfd930053c03",
"sections": [
{
"id": "256fef6e-6712-47fe-8e68-095c1204eb1a",
"type": "vehicle",
"departure": {
"place": {
"type": "place",
"location": {
"lat": 52.5309837,
"lng": 13.384567
},
"originalLocation": {
"lat": 52.5307999,
"lng": 13.3847
}
}
},
"arrival": {
"place": {
"type": "place",
"location": {
"lat": 52.5263761,
"lng": 13.3686186
},
"originalLocation": {
"lat": 52.5263999,
"lng": 13.3686
}
}
},
"summary": {
"duration": 243,
"length": 1206,
"baseDuration": 136
},
"transport": {
"mode": "car"
}
}
]
}
]
}
No routes possible
Some requests will not result in any routes for a number of reasons. This example requests a route from the HERE Berlin office to the HERE Chicago office:
curl -X GET \
'https://router.hereapi.com/v8/routes?transportMode=car&origin=52.5308,13.3847&destination=41.8845,-87.6386&apikey={YOUR_API_KEY}' \
The Atlantic Ocean is between these two offices. This causes the route calculation to fail with the following response:
{
"notice": [
{
"title": "Route calculation failed: Couldn't find a route.",
"code": "routeCalculationFailed"
}
],
"routes": []
}
Encoding your request
Some parameter values, especially waypoint
specifications, use a structured string in their values. Content characters may then clash with control characters in your request. Consider for example a request such as the following:
https://router.hereapi.com/v8/routes?transportMode=car&origin=54.32556,14.65314&destination=54.65422,14.66636;nameHint=Fish & Chips! St. 25&apikey={YOUR_API_KEY}
Such a request is ambiguous due to the use of control characters (&
, !
) in the value of nameHint
. Such characters need to be appropriately percent-encoded for disambiguation. The following guidelines apply for percent-encoding your requests:
- Never percent encode
&
or =
when they are used as control characters. - If your request does not use control characters as content (i.e., they are only used for their intended control meaning), you don't need to encode anything.
- If your request does use control characters for content, percent-encode them, but leave the controlling characters unencoded. Do not double-encode. In such mixed requests, all naked control characters will be interpreted as control, and all encoded ones as content.
Therefore, the above request should be encoded as:
https://router.hereapi.com/v8/routes?transportMode=car&origin=53.32556,14.65314&destination=53.65422,14.66636;nameHint=Fish%20%26%20Chips%21%20St.%2025&apikey={YOUR_API_KEY}
Next steps
For a full list of available examples, see the tutorials in the table of contents of this guide. For the terms and conditions covering this documentation, see the HERE Documentation License.