Find nearest EV charging stations
Nearest-N EV charging station search around a coordinate pair, with optional connector type, operator, and minimum power filters. Locations are physical sites (charge points are grouped and summarized per connector type). Distances are great-circle (straight-line), not driving distance. Prices are EUR and may be null where the operator publishes no pricing. Deliberately unpaginated: at most 10 locations within at most 50 km per request. Data covers the European roaming network and refreshes monthly.
Query parameters
Search center latitude (-90 to 90)
Search center longitude (-180 to 180)
Search radius in kilometers. Out-of-range values are rejected, not clamped.
Only return locations that have at least one connector of this type
Case-insensitive substring match on the operator name (1-100 characters)
Only return locations with at least one connector at or above this power (kW). Combined with connectorType, the power requirement applies to that connector type.
Maximum number of locations to return. Out-of-range values are rejected, not clamped.
Response
Nearest charging locations, sorted by distance ascending. An empty area returns 200 with count 0.
Example response
{
"search": {
"lat": 50.1175,
"lon": 14.4908,
"radiusKm": 10,
"minPowerKw": 150
},
"count": 5,
"stations": [
{
"name": "R378",
"owners": [
"CEZ, a. s."
],
"lat": 50.12241,
"lon": 14.51215,
"distanceKm": 1.62,
"stationCount": 4,
"address": {
"street": "Kbelská 919/31",
"city": "Praha 9 - Vysočany",
"zip": "190 00",
"country": "CZ"
},
"maxPowerKw": 300
}
]
}