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

NameTypeDescription

vehicleId

string

Vehicle unique identifier

Headers

NameTypeDescription

DriveKit-Admin-API-Key

string

Admin API Key

{
    "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.

FieldTypeDescription

distance

int

Vehicle mileage

analyzedDistance

int

Analyzed distance

tripNumber

int

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

FieldTypeDescription

analyzedDistance

int

Total distance analyzed for the component (in km)

distance

int

Total distance analyzed for the component (in km)

changeDate

date

Date of last component change, null if the component was never changed Date format: yyyy-MM-dd'T'HH:mm:ss.SSSZ

wear

double

Total worn mass percentage of the component (right/left)

Min. value = 0% / Max. value = 100%

autonomy

int

Component remaining distance before change (in km)

Min. value = 0 / Max. value = 1 000 000

wearRate

double

Average wear rate for the component (in %/1000 km)

Last updated