GET
/
{vin}
/
path
Get Driving Path
curl --request GET \
  --url https://api.tessie.com/{vin}/path \
  --header 'Authorization: Bearer <token>'
{
"results": [
{
"timestamp": 1728191237,
"latitude": 40.73061,
"longitude": -73.935242,
"heading": 116,
"battery_level": 79,
"speed": 18,
"odometer": 1234.56,
"autopilot": "Standby"
},
{
"timestamp": 1728191268,
"latitude": 40.73061,
"longitude": -73.935242,
"heading": 109,
"battery_level": 79,
"speed": 10,
"odometer": 1235.67,
"autopilot": "Standby"
},
{
"timestamp": 1728191299,
"latitude": 40.73061,
"longitude": -73.935242,
"heading": 118,
"battery_level": 78,
"speed": 5,
"odometer": 1236.78,
"autopilot": "Off"
}
]
}

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.

Query Parameters

from
number

The start of the timeframe. Unix timestamp in seconds.

to
number

The end of the timeframe. Unix timestamp in seconds.

separate
boolean
default:false

Whether the path should be separated by individual drives.

simplify
boolean
default:true

Whether the path should be simplified to reduce the number of points.

details
boolean
default:false

Whether the path should include details like timestamps, speeds and headings.

Response

200 - application/json

Success

The response is of type object.