Skip to main content
GET
/
v1
/
vehicles
/
{vehicle_id}
/
specifications
Get Vehicle Specifications
curl --request GET \
  --url https://api.volteras.com/v1/vehicles/{vehicle_id}/specifications \
  --header 'Authorization: Bearer <token>'
{
  "model": "<string>",
  "make": "<string>",
  "modelYear": 123,
  "batteryCapacity": 123,
  "batteryCapacityNet": 123,
  "standardEvr": "<string>",
  "allElectricRange": "<string>",
  "allElectricRangeMin": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

vehicle_id
string
required

Unique internal identifier for the vehicle.

Response

200 - application/json

Successful Response

Vehicle specifications schema

model
string | null
make
string | null
modelYear
integer | null
batteryCapacity
number | null
batteryCapacityNet
number | null
standardEvr
string | null
allElectricRange
string | null
allElectricRangeMin
integer | null