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

Headers

{
    "tripNumber": 1216,
    "distance": 21070,
    "analyzedDistance": 21070,
    "frontTire": {
        "distance": 21069,
        "analyzedDistance": 21070,
        "wear": 66.79959379662844,
        "wearRate": 3.3018195147577143,
        "autonomy": 10396,
        "changeDate": "2019-05-30T09:23:54.790+0000"
    },
    "rearTire": {
        "distance": 21069,
        "analyzedDistance": 21070,
        "wear": 25.259162467783845,
        "wearRate": 1.2562514234046818,
        "autonomy": 63309,
        "changeDate": "2019-05-30T09:23:54.944+0000"
    },
    "frontBrake": {
        "distance": 21069,
        "analyzedDistance": 21070,
        "wear": 30.3487879675045,
        "wearRate": 1.5338929641908188,
        "autonomy": 47787,
        "changeDate": "2019-05-30T09:23:55.124+0000"
    },
    "rearBrake": {
        "distance": 21069,
        "analyzedDistance": 21070,
        "wear": 23.241808169499258,
        "wearRate": 1.1404455268571503,
        "autonomy": 71549,
        "changeDate": "2019-05-30T09:23:55.265+0000"
    }
}

Response

The table below summarizes the list of vehicle statistics data.

WearComponent

Last updated