GET
/
vehicles
/
{id}
/
{make}
/
attributes
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/attributes" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
    "driveUnit": {
        "front": "PM216MOSFET",
        "rear": "NoneOrSmall"
    },
    "driverAssistVersion": "TeslaAP3",
    "efficiencyPackage": "MY2021",
    "firmwareVersion": "2022.8.10.12 0ce482dac45d",
    "id": "36ab27d0-fd9d-4455-823a-ce30af709ffc",
    "make": "TESLA",
    "model": "Model S",
    "nickname": "Tommy",
    "performancePackage": "Base",
    "sentryMode": {
        "available": false,
        "enabled": true
    },
    "style": {
        "exteriorColor": "SolidBlack",
        "exteriorTrim": "Black",
        "interiorTrim": "Black2"
    },
    "trimBadging": "74d",
    "wheel": {
        "diameter": 482.6,
        "style": "Apollo"
    },
    "year": 2022
}

This endpoint is currently available for tesla

Permission

read_extended_vehicle_info

Request

Path

id
string
required

The vehicle ID of the vehicle you are making a request to.

make
string
required

The make of the vehicle you are making a request to.

Response

id
string

A vehicle ID (UUID v4).

make
string

The manufacturer of the vehicle.

model
string

The model of the vehicle.

year
integer

The model year.

firmwareVersion
string

Vehicle’s current firmware.

trimBadging
string

Indicates the Tesla’s trim.

efficiencyPackage
string

Efficiency package.

performancePackage
string

Performance package.

nickname
string

Vehicle’s nickname.

driverAssistVersion
string

Driver Assist version.

sentryMode
object

Sentry Mode status and availability.

style
object

Descriptors of the vehicle’s interior and exterior.

wheel
object

Descriptors of the vehicle’s wheel.

driveUnit
object

Details on the vehicle’s drive unit(s).