v1
latestOpenAPI 3.0.32026-07-13353343.5 KBVehicles
Tire pressure
Description
Returns the air pressure of each of the vehicle’s tires. Permission
read_tires
Example Response
| Name | Type | Description |
|---|---|---|
| frontLeft | number | The current air pressure of the front left tire (in kilopascals by default or in pounds per square inch using the sc-unit-system). |
| frontRight | number | The current air pressure of the front right tire (in kilopascals by default or in pounds per square inch using the sc-unit-system). |
| backLeft | number | The current air pressure of the back left tire (in kilopascals by default or in pounds per square inch using the sc-unit-system). |
| backRight | number | The 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
Example response
{
"frontLeft": 32,
"frontRight": 32,
"backLeft": 32,
"backRight": 32
}