v1

latestOpenAPI 3.0.32026-07-13353343.5 KB
Vehicles

Tire pressure

Description

Returns the air pressure of each of the vehicle’s tires. Permission

read_tires

Example Response

NameTypeDescription
frontLeftnumberThe current air pressure of the front left tire (in kilopascals by default or in pounds per square inch using the sc-unit-system).
frontRightnumberThe current air pressure of the front right tire (in kilopascals by default or in pounds per square inch using the sc-unit-system).
backLeftnumberThe current air pressure of the back left tire (in kilopascals by default or in pounds per square inch using the sc-unit-system).
backRightnumberThe current air pressure of the back right tire (in kilopascals by default or in pounds per square inch using the sc-unit-system).
get/vehicles/{vehicle_id}/tires/pressure

Response

return Pressure reading

frontLeftnumber float

The current air pressure of the front left tire (in kilopascals by default or in pounds per square inch using the sc-unit-system).

frontRightnumber float

The current air pressure of the front right tire (in kilopascals by default or in pounds per square inch using the sc-unit-system).

backLeftnumber float

The current air pressure of the back left tire (in kilopascals by default or in pounds per square inch using the sc-unit-system).

backRightnumber float

The current air pressure of the back right tire (in kilopascals by default or in pounds per square inch using the sc-unit-system).

Example response

{
  "frontLeft": 32,
  "frontRight": 32,
  "backLeft": 32,
  "backRight": 32
}