Statistics
For each vehicle in your fleet, you can access to a set of data:
The number of trips.
The total distance analyzed.
The vehicule mileage.
The wear percentages of the front/rear tires and brakes.
If you have your admin API key, you can try the API via this link.
Vehicle statistics
GET
https://service.drivequant.com/v3/drivekit/admin/vehicles/{vehicleId}/statistics
Retrieve vehicle statistics using the vehicle unique identifier.
Path Parameters
Name | Type | Description |
---|---|---|
vehicleId | string | Vehicle unique identifier |
Headers
Name | Type | Description |
---|---|---|
DriveKit-Admin-API-Key | string | Admin API Key |
Response
The table below summarizes the list of vehicle statistics data.
Field | Type | Description |
---|---|---|
distance |
| Vehicle mileage |
analyzedDistance |
| Analyzed distance |
tripNumber |
| Total number of trips |
frontTire | Wear data for the front tire | |
rearTire | Wear data for the rear tire | |
frontBrake | Wear data for the front brake | |
rearBrake | Wear data for the rear brake |
WearComponent
Field | Type | Description |
---|---|---|
analyzedDistance |
| Total distance analyzed for the component (in km) |
distance |
| Total distance analyzed for the component (in km) |
changeDate |
| Date of last component change, null if the component was never changed
Date format: |
wear |
| Total worn mass percentage of the component (right/left) Min. value = 0% / Max. value = 100% |
autonomy |
| Component remaining distance before change (in km) Min. value = 0 / Max. value = 1 000 000 |
wearRate |
| Average wear rate for the component (in %/1000 km) |
Last updated