Eco-Movement PCPR API User Guide

Introduction

Eco-Movement PCPR API is an outbound API based on the market standard OCPI protocol. The API makes it easy for consumers to connect with Eco-Movement for retrieving public charge point data for the United Kingdom.

📘

Note

This user guide explains only the main features of OCPI protocol (version 2.2). For more in-depth documentation, refer to the original OCPI 2.2 documentation.

Available Endpoints

The following table lists the endpoints that are available for communicating using the JSON format:

EndpointDescription
locationsThe locations endpoint retrieves a list of all locations or a specific location (using the location's id). This endpoint also supports the optional date_from and date_to parameters. See Optional Parameters for more information.
tariffsThe tariffs endpoint displays the raw tariffs shared with Eco-Movement by the CPOs using the OCPI protocol.
statusesThe statuses endpoint returns the statuses of all EVSEs.

Optional Parameters

To get location related information using GET requests for a specific time period, you can use the parameters date_from and date_to. These parameters use the combined date and time format from the ISO 8601 standard. All timestamps are in UTC.

The result returned by Eco-Movement consists only the changes that have occurred during the time period set using the date_from and date_to parameters.

ParameterDescription
date_fromUse this parameter to set the starting date and time. For example, request only the updates for the last 5 minutes.
date_toUse this parameter to set the ending date and time. For example, request only the updates for the last 5 minutes.

The following is an example request using the GET method:

<https://open-chargepoints.com/api/ocpi/cpo/2.2.1/locations/?date_from=2020-12-29T17:15:09&date_to=2020-12-29T17:20:09>

📘

Note

These parameters are only supported for locations endpoint. It is unrelated to statuses endpoint, which returns the real-time status of the EVSEs.

📘

Note

When you receive information using GET requests, which often require many paginated requests, if one or more requests fail, retry the failed requests so you don't miss that data.

🚧

Caution

Eco-Movement strongly recommends limiting simultaneous GET requests to a maximum of 5.