v1

latestOpenAPI 3.0.12026-07-243686491.1 MB
Vehicles

Retrieve a single vehicle model

Required scope: vehicles:read

get/api/v1/vehicles/models/{modelId}

Path parameters

modelIdinteger required

Response

Vehicle model with the provided id

idinteger

Id of the vehicle model

modelstring required

Model name

variantstring nullable

Variant of the vehicle model

releaseYearinteger nullable

Release year of the vehicle model

pictureUrlstring nullable

URL of the vehicle model picture

capacityKwhnumber double nullable

Battery capacity in kWh

maxKwAcnumber double nullable

Maximum AC charging power in kW

maxKwDcnumber double nullable

Maximum DC charging power in kW

displayNamestring required

Display name of the vehicle model

Example response

{
  "id": 1,
  "brand": {
    "id": 1,
    "name": "Tesla",
    "logoUrl": "https://imgix.monta.com/brands/tesla.png",
    "integrationStatus": "SUPPORTED"
  },
  "model": "Model 3",
  "variant": "Long Range",
  "releaseYear": 2021,
  "pictureUrl": "https://imgix.monta.com/models/tesla-model3.png",
  "capacityKwh": 72.5,
  "maxKwAc": 11,
  "maxKwDc": 150,
  "displayName": "Tesla Model 3 Long Range (2021) - 72 kWh",
  "connectors": [
    {
      "id": 1,
      "name": "Type 2",
      "slug": "type2"
    }
  ]
}