Find Stations
find_stationsFind EV charging stations (electric vehicle chargers) near a place. Pass a location name (city/place, e.g. "San Francisco", "Berlin", "Austin TX") and it is geocoded automatically — OR pass explicit latitude+longitude. Returns nearby charging stations with operator, status, available connector types (CCS/CHAdeMO/Tesla connectors), charging speed (kW), and distance. Filter by connector type to find e.g. only CCS or Tesla chargers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| _apiKey | No | Optional — your own Open Charge Map API key for higher limits; works without one. | |
| country | No | Optional ISO country code (e.g. "US", "FR") to disambiguate an ambiguous `location` like "Paris" or "Springfield". | |
| distance | No | Search radius around the location (default 10). | |
| latitude | No | Latitude of the search center, e.g. 37.7749. Optional if `location` is given. | |
| location | No | Place/city name to search near, e.g. "San Francisco", "Berlin", "Austin TX". Geocoded automatically. Provide THIS or latitude+longitude. | |
| longitude | No | Longitude of the search center, e.g. -122.4194. Optional if `location` is given. | |
| max_results | No | Maximum number of stations to return (default 20, max 100). | |
| distance_unit | No | Unit for the search radius (default "KM"). | |
| connection_type | No | Optional connector type name to filter by, e.g. "CCS", "CHAdeMO", "Tesla". Case-insensitive substring match against each station's connector titles. |