Skip to main content
GET
/
v1
/
vehicles
/
{vehicle_id}
/
maintenance
/
tires
/
historic
Get Vehicle Tires Readings Historic
curl --request GET \
  --url https://api.volteras.com/v1/vehicles/{vehicle_id}/maintenance/tires/historic \
  --header 'Authorization: Bearer <token>'
{
  "tires": []
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

vehicle_id
string
required

Unique internal identifier for the vehicle.

Query Parameters

from_datetime
string | null

Start datetime for the tire pressure history, in ISO format. Date range must be 3 months or less.

to_datetime
string | null

End datetime for the tire pressure history, in ISO format. Date range must be 3 months or less.

Response

200 - application/json

Successful Response

tires
VehicleTiresFormatted · object[]