v1

latestOpenAPI 3.1.0Proprietary2026-08-061935150.4 KB
EV Routing

List EV models supported by the route planner

The electric vehicles the route planner can plan for, with usable battery, rated consumption, DC ports and peak charging power. Use an id from here as the vehicleId parameter of GET /v1/ev-route. Unfiltered, this returns the whole catalog in one response.

get/ev-vehicles

Query parameters

brandstring
Example:Tesla

Case-insensitive brand filter, e.g. Tesla

qstring
Example:model 3

Free-text filter across brand, model and variant

Response

Matching vehicles, plus the attribution required by the catalog license.

attributionstring

Required credit for the vehicle catalog — a license condition, display it alongside the data

countinteger

Example response

{
  "attribution": "Vehicle data from Open EV Data",
  "count": 1282,
  "vehicles": [
    {
      "id": "tesla-model-3-lr-2021",
      "brand": "Tesla",
      "model": "Model 3",
      "variant": "Long Range Dual Motor",
      "releaseYear": 2021,
      "usableBatteryKwh": 75,
      "consumptionWhPerKm": 160,
      "dcMaxKw": 250,
      "dcPorts": [
        "ccs"
      ]
    }
  ]
}