EV Chargers
EV charging stations worldwide
Find EV charging stations worldwide — 500K+ locations across 100+ countries. Search by location for availability, connectors, power, pricing, and network. Plan road trips or compare infrastructure across countries. Filter by CCS, CHAdeMO, Tesla/NACS, Type 2, speed, and access type.
Find EV charging stations near a location. Returns stations with connector types, power levels, network, address, distance, and availability status. Supports filtering by connector, speed, network, and access type.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "ev-chargers",
"skill": "find_chargers",
"input": {
"latitude": 51.5074,
"longitude": -0.1278
}
}' \
https://api.toolrouter.com/v1/tools/callGet full details for a specific charging station by ID. Returns all connections with power and connector info, operator details, usage cost, and availability status.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "ev-chargers",
"skill": "charger_details",
"input": {
"station_id": "ocm:123456"
}
}' \
https://api.toolrouter.com/v1/tools/callFind EV charging stations along a driving route between two points. Ideal for road trip planning. Returns chargers near the route sorted by distance from start. US routes use the NREL route API; international routes sample waypoints along the path.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "ev-chargers",
"skill": "route_chargers",
"input": {
"start_latitude": 34.0522,
"start_longitude": -118.2437,
"end_latitude": 37.7749,
"end_longitude": -122.4194
}
}' \
https://api.toolrouter.com/v1/tools/callGet statistics about EV charging networks in a country or region. Shows station counts per network, connector type breakdown, and fast vs slow charger ratios.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "ev-chargers",
"skill": "network_stats",
"input": {
"country_code": "US"
}
}' \
https://api.toolrouter.com/v1/tools/callGet a high-level summary of EV charging infrastructure in a country. Total stations, connector type distribution, fast vs slow ratio, top networks, and growth indicators.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "ev-chargers",
"skill": "country_stats",
"input": {
"country_code": "US"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"ev-chargers","skill":"find_chargers","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Can I find chargers near a point or along a route?
Yes. `find_chargers` searches near coordinates, and `route_chargers` finds stations along a road trip between two points.
Can I filter by connector type or charging speed?
Yes. The search tools support connector filters, charging level, power, network, and access type so you can narrow to the chargers you can actually use.
Can I check one station before I drive there?
`charger_details` returns the full station record, including connectors, power, operator, address, pricing, and availability.
Can it compare charging infrastructure by country?
Yes. `network_stats` and `country_stats` summarize station counts, connector mix, and fast-versus-slow ratios for a country or region.