v1

latestOpenAPI 3.1.0Proprietary2026-08-061935150.4 KB
Charging Stations

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.

get/charging-stations

Query parameters

latnumber required
Example:50.1175

Search center latitude (-90 to 90)

lonnumber required
Example:14.4908

Search center longitude (-180 to 180)

radiusnumber
Example:25

Search radius in kilometers. Out-of-range values are rejected, not clamped.

connectorType'type2' | 'ccs' | 'chademo'
Example:ccs

Only return locations that have at least one connector of this type

ownerstring
Example:ionity

Case-insensitive substring match on the operator name (1-100 characters)

minPowerKwnumber
Example:150

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.

limitinteger
Example:5

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.

countinteger

Number of locations returned

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
    }
  ]
}