GET
/
vehicles
/
{id}
/
{make}
/
status
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/status" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
"status": "ASLEEP",
"inService": true,
"gear": "DRIVE"
}
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.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/status" \
-H "Authorization: Bearer {token}" \
-X "GET"

Response

status
string
The current status 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.
{
"status": "ASLEEP",
"inService": true,
"gear": "DRIVE"
}