GET
/
{vin}
/
tire_pressure
Get Tire Pressure
curl --request GET \
  --url https://api.tessie.com/{vin}/tire_pressure \
  --header 'Authorization: Bearer <token>'
{
  "front_left": 2.275,
  "front_right": 2.325,
  "rear_left": 2.4,
  "rear_right": 2.425,
  "front_left_status": "low",
  "front_right_status": "low",
  "rear_left_status": "low",
  "rear_right_status": "low",
  "timestamp": 1645131216
}

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

pressure_format
enum<string>
default:bar

The pressure unit.

Available options:
bar,
kpa,
psi
Example:

"psi"

from
number

The start of the timeframe. Unix timestamp in seconds.

to
number

The end of the timeframe. Unix timestamp in seconds.

Response

200 - application/json

Success

The response is of type object.