APIs/Connected Vehicle APIVersion 2
APIs/Connected Vehicle APIVersion 2

Tyres

Get tyres status

Endpoint used to get vehicle’s latest tyre status values.

get

https://api.volvocars.com/connected-vehicle/v2/vehicles/{vin}/tyres

Scopes

  • openid

  • conve:tyre_status

Headers

KeyDescription

Key

accept

Description

The mediatype of what should be returned. The valid values are: application/json

Key

authorization

Description

The access token issued by Volvo ID identity system.

Key

vcc-api-key

Description

Your application’s VCC API Key.

All these header values are mandatory. They must exist in every request.

Response body

The response’s data node lists the vehicle’s latest window status values.

FieldDescription

Field

frontLeft.timestamp

Description

Timestamp in ISO-8601 format when the status value has been last retrieved from the vehicle.

Field

frontLeft.value

Description

Front left tyre’s latest retrieved pressure level. Possible values: UNSPECIFIED, NO_WARNING, VERY_LOW_PRESSURE, LOW_PRESSURE, HIGH_PRESSURE.

Field

frontRight.timestamp

Description

Timestamp in ISO-8601 format when the status value has been last retrieved from the vehicle.

Field

frontRight.value

Description

Front right tyre’s latest retrieved pressure level. Possible values: UNSPECIFIED, NO_WARNING, VERY_LOW_PRESSURE, LOW_PRESSURE, HIGH_PRESSURE.

Field

rearLeft.timestamp

Description

Timestamp in ISO-8601 format when the status value has been last retrieved from the vehicle.

Field

rearLeft.value

Description

Rear left tyre’s latest retrieved pressure level. Possible values: UNSPECIFIED, NO_WARNING, VERY_LOW_PRESSURE, LOW_PRESSURE, HIGH_PRESSURE.

Field

rearRight.timestamp

Description

Timestamp in ISO-8601 format when the status value has been last retrieved from the vehicle.

Field

rearRight.value

Description

Rear right tyre’s latest retrieved pressure level. Possible values: UNSPECIFIED, NO_WARNING, VERY_LOW_PRESSURE, LOW_PRESSURE, HIGH_PRESSURE.

Examples

curl -X GET 'https://api.volvocars.com/connected-vehicle/v2/vehicles/{vin}/tyres' \
  -H 'accept: application/json' \
  -H 'authorization: Bearer <your-access-token>' \
  -H 'vcc-api-key: <your-vcc-api-key>'

/