GET
/
vehicles
/
{id}
/
{make}
/
status
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/status" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
"gear": "DRIVE",
"inService": true,
"state": "ASLEEP"
}

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

state
string

The current state of the vehicle. If the vehicle is asleep, this request will not wake the vehicle.

inService
bool

Indicates if the vehicle is in service mode.

gear
string

Indicates the current gear shift position.