HERE EV Charge Points API
EV Charging Stations API Developer's Guide

Station Details

The stations resource allows you to retrieve full, up to date information about a specific charging station only.

Requests against this resource use the HTTP GET method.

Request Example

The code block below shows a search request for the station with the specified station-id using a bearer token.

GET 
https://ev-v2.cc.api.here.com/ev/stations/{id}.xml
-H 'Authorization: Bearer{YOUR_TOKEN}'

The code block below shows a search request for the station with the specified station-id using an API Key.

GET
https://ev-v2.cc.api.here.com/ev/stations/{id}.xml?apiKey={YOUR_API_KEY};
       
, where {id} is the id in the id attribute in the evStation element.
Note: id values change without notice. If the id is no longer available in the resource, 404 Not Found status code is returned.

Request Parameters

No other query parameters beside apiKey are supported.

Response to this Request

For the response to the station details requests, see Stations Response.