GET
/
vehicles
/
{id}
/
tires
/
pressure
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
}

Permission

read_tires

Request

Path

id
string
required

The vehicle ID of the vehicle you are making a request to.

Response

frontLeft
number
default: "kilopascals"

The current air pressure of the front left tire.

frontRight
number
default: "kilopascals"

The current air pressure of the front right tire.

backLeft
number
default: "kilopascals"

The current air pressure of the back left tire.

backRight
number
default: "kilopascals"

The current air pressure of the back right tire.