Skip to main content
GET
/
{vin}
/
status
Get Status
curl --request GET \
  --url https://api.tessie.com/{vin}/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "asleep"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

vin
string
required

The associated VIN.

Response

200 - application/json

Success

status
enum<string>
Available options:
asleep,
waiting_for_sleep,
awake
Example:

"asleep"