Geosearch
Search for EV charging locations by radius, route, or batch. Get detailed location information including connectors, availability, pricing and more.
Overview
The Geosearch API provides multiple ways to find and retrieve charging location information:
- Radius Search: Find chargers within a specified distance from a point
- Route Search: Search for chargers along a travel route
- Batch Retrieval: Get all locations for full data synchronization
For each charging location, you can access:
- Available connectors and specifications
- Real-time availability status
- Opening hours
- Operator details
- Physical location and directions
Radius Search
Radius search helps users find charging locations near a specific point. This is useful for:
- Finding chargers near the user's current location
- Discovering charging options in a particular area
- Analyzing charging infrastructure density
Basic Usage
POST /v1/geosearch/radius?latitude=52.3&longitude=4.7
{
"filters": {
"locationStatuses": ["AVAILABLE"]
}
}
This will return up to 300 available charging locations within 3000 meters of the specified point.
Advanced Search Options
1. Adjusting Search Area
- Use the
distance
parameter to change the search radius (in meters) - Larger radius will return more results but might lead to a slower response
- For better performance with large radius searches, consider using aggregation
2. Filtering Results
You can narrow down results using various filters:
{
"filters": {
"locationStatuses": ["AVAILABLE"], // Only show available chargers
"powerType": "DC", // Only DC chargers
"power": 50000, // Min 50kW power
"open247": true // Only 24/7 locations
}
}
3. Using Aggregation
For large areas, you can use aggregation to get clustered results:
POST /v1/geosearch/radius?latitude=58.5&longitude=14.75&aggregate=true&aggregationPrecision=5
{
"filters": {
"powerType": "DC"
}
}
This returns clusters of charging locations instead of individual points, making it ideal for:
- Map overview displays
- Understanding charging density in large areas
- Faster response times for large radius searches
Route Search
Route search helps find chargers along a route by passing a set of points that this route consists of. This is useful to let the user find convenient charging stops during their trip.
Example request:
{
"points": [
{
"latitude": "58.1",
"longitude": "13.3"
},
{
"latitude": "58.0",
"longitude": "13.295"
}
],
"filters": {
"connectorStandards": ["3PinSquare"],
"locationStatuses": ["AVAILABLE"],
"capabilities": ["REMOTE_START_STOP_CAPABLE"],
"power": 20000,
"powerType": "AC",
"open247": true
}
}
Location by id
This endpoint returns all details for a given location, and unlike the other geosearch endpoints, it includes prices.
The
locationId
is part of the URL, please make sure to URL-encode id
Prices
When retrieving location details, it is possible to specify the user, charging key of fleet for which prices should be looked-up (if no parameter is provided, default prices are returned).
In some rare cases, the price might be absent. If the price is not available, it is recommended to display a message to the end user such as "Price temporarily unavailable".
Price object model
- id (string) - Price id
- description (string) - Human-readable price description, e.g.
€ 0.56/kWh
- currency (string) - Three-letter currency code (ISO 4217 format)
- elements (array, required) - Possible prices for that connector, depending on restrictions
- price_components (array)
- price (number) - Cost in the currency stated above. VAT is included. Decimal number. For example, if currency is EUR and price is 1.10, the cost is €1.10. More information on pricing can be found below
- type (string/enum) - Can be one of TIME, ENERGY, FLAT, PARKING_TIME
- step_size (number) - The smallest unit of usage that will be billed. Unit: seconds for
TIME
andPARKING_TIME
, watt-hours (Wh) forENERGY
. Check explanation below
- restrictions (object) - Each restriction can contain one or more of the following properties (it can also be empty):
- start_time (string) - example:
11:30
- local time when this price element starts applying - end_time (string) - example:
21:00
- local time when this price element ends applying - day_of_week (array of string/enum) - possible values: [MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY].
- min_duration (number) - minimum duration (in seconds) to apply this price element
- max_duration (number)
- min_kwh (number) - total power (in kWh) charged throughout the session to apply this price element
- max_kwh (number)
- start_time (string) - example:
- price_components (array)
Explanation
The first price element that matches all restrictions is selected. Then, the components from that element are combined to calculate the final price.
Units for price
and step_size
per type:
Type | Price Unit | Step Size Unit |
---|---|---|
TIME | hour | seconds |
PARKING_TIME | hour | seconds |
ENERGY | kWh | Wh |
FLAT | session | ignored (N/A) |
How step_size works
Example:
{
"type": "TIME",
"step_size": 300,
"price_per_hour": 6.00
}
When type is TIME
, step_size is in seconds (see table above). 300 seconds equals 5 minutes, so in this case the customer will be billed in 5-minutes blocks.
If the user charges for 6 minutes, they will be billed for _10 minutes_ (2 blocks of 300 seconds).
The price
is specified for a full hour. In this example, the price is 6.00€. Since 10 minutes is one-sixth of an hour, the user will be charged €1.00 (i.e., €6.00 ÷ 6 = €1.00).
The price elements are defined in the OCPI tariff standard, you can find examples here.
Locations batch
This endpoint allows you to retrieve all available locations one page at a time.
Locations are returned sorted by their last update timestamp (last_updated
field) in ascending order, meaning the most recently updated location appears last in the result.
The most efficient way to use this endpoint is to:
- Perform a FULL PULL:
- Issue a request to
/v1/locations/batch
to retrieve the first page of locations along with acursor
. - Continue requesting more locations using
/v1/locations/batch?cursor=<cursor_from_previous_request>
, wherecursor_from_previous_request
is the cursor returned by the previous request. - Repeat until the response does not include a new cursor, indicating there are no more locations to retrieve.
- Issue a request to
- After the FULL PULL (1), perform regular DELTA PULLS by specifying the
last_updated
parameter:/v1/locations/batch?last_updated=2024-05-27T10:44:48.123Z
. The endpoint will only return locations that have been updated afterlast_updated
. The pagination logic (cursor) should be used for DELTA PULLs as well.- Since the locations are returned in ascending order, you can record the
last_updated
value of the last location in the last page. That is the point in time when you last were in-sync with location data. You can pass that value aslast_updated
parameter to the next DELTA PULL. This will guarantee you always receive all updates.
- Since the locations are returned in ascending order, you can record the
A FULL PULL is required when setting up the integration and should also be performed regularly to ensure complete synchronization. While DELTA PULLs capture updates efficiently, periodic FULL PULLs allow you to detect locations that no longer exist and mark them as hidden. One approach is to hide locations that have a last_updated
timestamp older than the latest FULL PULL.
If a failure occurs during a PULL process, you can use the cursor
to resume. For instance, if the process crashes after 500 pages, you can restart from the last successfully processed page by using the last returned cursor.
Operators List
The API provides access to a list of Charging Point Operators (CPOs) whose chargers are available through the geosearch endpoints. This is useful for:
- Displaying operator names in your UI
- Filtering geosearch results by specific operators
The first page should be fetched without providing any cursor. Use the cursor provided in the response of each page to get the next page. The last page has no cursor.
Aggregation
If the 'aggregate' parameter is set to true, but an aggregation rectangle will contain only one location, then it will end up in the locations array. This means both locations and aggregates arrays can be filled. If there is only one location in the aggregation rectangle, then it will end up in locations array.
If 'aggregate' parameter is absent or false, then aggregates array will not appear in the results at all.
Here is a table describing the sizes of a rectangles used for each aggregation level:
Value | Meaning |
---|---|
2 | 1,252.3km x 624.1km |
3 | 156.5km x 156km |
4 | 39.1km x 19.5km |
5 | 4.9km x 4.9km |
6 | 1.2km x 609.4m |
7 | 152.9m x 152.4m |
8 | 38.2m x 19m |
9 | 4.8m x 4.8m |
Aggregation can not be selected if
openNow
filter is set to true. Doing so returns400
.
Filtering
Important considerations when filtering:
- A location is included if ANY of its connectors match the filter criteria
- Results include ALL connectors at matching locations
- Client-side filtering may be needed for specific connectors
- Multiple filters can be combined
- Operator filtering takes precedence over exclusions
When using filters (i.e. location status filter), the result will contain each location that have at least one charger with this status. This means that when you enter AVAILABLE
in the filter, you might get a location with 5 chargers, out of which only one will have status AVAILABLE
.
Chargers with other statuses will have to be filtered out on your side.
Same rule applies to all other filters relating to chargers or connector: if even one charger/connector fulfills the filtering, then the whole location with all chargers and connectors will be returned.
Filtering on Operator ids
This array of integer ids represent a filter where only the chargers from the operators provided will be returned.
If this value is provided it will ignore excludedOperatorIds
if also provided.
Excluded operator ids
This array of integer ids represent a filter where the chargers belonging to the operators provided will be excluded from the results. If operatorIds
are provided, this array will be ignored.
Filtering EVSE IDs
You can filter locations by their EVSE IDs using partial matching. The filter works by breaking down the EVSE ID into parts and matching those parts:
For example, given an EVSE ID IE*ION*E406304
:
✅ These filters will match:
IE
(matches first part)ION
(matches middle part)IE*ION
(matches beginning)*ION*
(matches middle)
❌ These filters won't match:
ION*E4
(becauseE4
is only part ofE406304
)406
(because it's only part of a segment)
Key points:
- Special characters like
*
act as separators - Each filter must match a complete segment
- When using multiple EVSE ID filters, a match on any filter will include the location
This filtering is useful when you want to find chargers from specific networks or locations that follow known ID patterns.
Connector Standards
The API supports a wide range of connector types:
- Standard AC connectors (Type 1, Type 2, etc.)
- DC fast charging (CCS, CHAdeMO)
- Tesla connectors
- Industrial and domestic sockets
Unrecognized connector standards should be mapped to UNKNOWN type.
Standard | Comment |
---|---|
3PinSquare | Same as DOMESTIC_G |
Cee2Poles | Same as IEC_60309_2_single_16 |
CeeBlue | Same as IEC_60309_2_single_16 |
CeePlus | Same as IEC_60309_2_three_16 |
CeeRed | Same as IEC_60309_2_three_32 |
Combo | Same as IEC_62196_T2_COMBO |
Marechal | Same as IEC_60309_2_single_16 |
Nema5 | Same as DOMESTIC_B |
Scame | Same as IEC_62196_T3C |
Type1 | Same as IEC_62196_T1 |
Type2 | Same as IEC_62196_T2 |
Type3 | Same as IEC_62196_T3A |
TypeE | Same as DOMESTIC_E |
Schuko | Same as DOMESTIC_F |
T13 | Same as DOMESTIC_J |
T15 | Same as DOMESTIC_J |
T23 | Same as DOMESTIC_J |
Chademo | Same as 'CHADEMO' |
CHADEMO | Same as 'Chademo' |
DOMESTIC_A | Nema5, NEMA 1-15, 2 pins |
DOMESTIC_B | Nema5, NEMA 5-15, 3 pins |
DOMESTIC_C | CEE 7/17, 2 pins |
DOMESTIC_D | CeeBlue, 3 pin |
DOMESTIC_E | Schuko, CEE 7/5 3 pins |
DOMESTIC_F | Schuko, CEE 7/4, 3 pins |
DOMESTIC_G | '3PinSquare', BS 1363, Commonwealth, 3 pins |
DOMESTIC_H | SI-32, 3 pins |
DOMESTIC_I | AS 3112, 3 pins |
DOMESTIC_J | T23, SEV 1011, 3 pins |
DOMESTIC_K | DS 60884-2-D1, 3 pins |
DOMESTIC_L | CEI 23-16-VII, 3 pins |
IEC_60309_2_single_16 | Industrial Connector single phase 16 Amperes (usually blue) |
IEC_60309_2_three_16 | Industrial Connector three phase 16 Amperes (usually red) |
IEC_60309_2_three_32 | Industrial Connector three phase 32 Amperes (usually red) |
IEC_60309_2_three_64 | Industrial Connector three phase 64 Amperes (usually red) |
IEC_62196_T1 | IEC 62196 Type 1 "SAE J1772" |
IEC_62196_T1_COMBO | Combo Type 1 based, DC |
IEC_62196_T2 | IEC 62196 Type 2 "Mennekes" |
IEC_62196_T2_COMBO | Combo Type 2 based, DC |
IEC_62196_T3A | IEC 62196 Type 3A |
IEC_62196_T3C | IEC 62196 Type 3C "Scame" |
TESLA_R | Same as 'Tesla' – Connector "Roadster"-type (round, 4 pin) |
TESLA_S | Same as 'Tesla' |
Tesla | |
UNKNOWN | CPO didn't provide details for that connector |
EVSE Statuses
Understand these charger status values for proper handling and UI display:
AVAILABLE
- Ready for chargingCHARGING
- Currently in useOCCUPIED
- Same as CHARGINGRESERVED
- Should be treated in the same way as CHARGINGBLOCKED
- Physically inaccessibleINOPERATIVE
- Temporarily unavailableOUTOFORDER
- Broken or under maintenancePLANNED
- Not yet installed (should be hidden)REMOVED
- No longer exists (should be hidden)OFFLINE
- Charger did not send any updates for unknown reasonUNKNOWN
- Status is not known (shouldn't be marked as Available)
Capabilities
The capabilities
field is an array of strings. Unknown values should be accepted in case a new capability is introduced.
Only these capabilities can be taken into account to reliably enable or disable certain features on a charger:
REMOTE_START_STOP_CAPABLE
: indicates that the charger can be started remotely (see Remote charging)PLUG_AND_CHARGE_CAPABLE
: indicates that the charger supports Plug & Charge
Updated 29 days ago