Vehicle Endpoints
Tire Pressure
Returns the air pressure of each of the vehicle’s tires.
GET
/v2.0/vehicles/{id}/tires/pressure
Permission
read_tires
Request
Path
idrequired
string
The vehicle id of the vehicle you are making a request to.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/tires/pressure" \
-H "Authorization: Bearer {token}" \
-X "GET"
Response
frontLeft
Default: "kilopascals"number
The current air pressure of the front left tire.
backRight
Default: "kilopascals"number
The current air pressure of the front right tire.
frontLeft
Default: "kilopascals"number
The current air pressure of the back left tire.
frontRight
Default: "kilopascals"number
The current air pressure of the back right tire.
{
"backLeft": 219.3,
"backRight": 219.3,
"frontLeft": 219.3,
"frontRight": 219.3
}
curl "https://api.smartcar.com/v2.0/vehicles/{id}/tires/pressure" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
"backLeft": 219.3,
"backRight": 219.3,
"frontLeft": 219.3,
"frontRight": 219.3
}