LogoLogo
ProductsUse casesDocsSupport
  • Introducing DriveKit
  • DriveKit Guides
  • Get started with drivekit
    • Trip recording lifecycle
    • iOS
      • 🚀Quick start
      • Advanced configurations
      • References
      • iOS DriveKit Demo App
    • Android
      • 🚀Quick start
      • Advanced configurations
      • References
      • Android DriveKit Demo App
      • Android 15 Migration guide
      • Android 14 Migration guide
      • Troubleshooting
  • Trip analysis
    • Introduction
    • iOS
      • Permissions
      • Trip management
      • TripListener
      • Crash Detection
      • Beacon usage
      • Bluetooth usage
      • Custom metadata
      • References (iOS)
    • Android
      • Runtime permissions
      • Trip management
      • TripListener
      • Crash Detection
      • Beacon usage
      • Bluetooth usage
      • Custom metadata
      • References (Android)
    • User interface
      • iOS
        • Get started
        • Working hours
        • Driver alert in case of crash
        • Trip recording widget
        • Location sharing
      • Android
        • Get started
        • Working hours
        • Driver alert in case of crash
        • Trip recording widget
        • Location sharing
    • REST services
      • Trip
      • References
    • Trip Simulator
      • iOS
      • Android
  • PERMISSIONS UTILS
    • Introduction
    • User interface
      • iOS
        • Get started
        • Main configurations
      • Android
        • Get started
        • Main configurations
  • COMMON UI
    • Introduction
    • iOS
      • Get started
    • Android
      • Get started
    • References
  • DRIVER DATA
    • Introduction
    • iOS
      • Get started
      • References (iOS)
    • Android
      • Get started
      • References (Android)
    • User interface
      • iOS
        • Get started
        • Advanced configurations
        • Trips widgets
        • My Synthesis
        • My Driver Profile
      • Android
        • Get Started
        • Advanced configurations
        • Trips widgets
        • My Synthesis
        • My Driver Profile
  • Driver Data Timeline UI
    • Introduction
    • iOS
      • Get started
    • Android
      • Get started
  • Vehicle
    • Introduction
    • iOS
      • Get started
      • Vehicle management
      • Beacon management
      • Bluetooth device management
      • Odometer
      • References (iOS)
    • Android
      • Get started
      • Vehicle management
      • Beacon management
      • Bluetooth device management
      • Odometer
      • References (Android)
    • User interface
      • iOS
        • Get started
        • Main configurations
        • Advanced configurations
      • Android
        • Get started
        • Main configurations
        • Advanced configurations
  • DRIVER ACHIEVEMENT
    • Introduction
    • iOS
      • Get started
    • Android
      • Get Started
    • User interface
      • iOS
      • Android
  • CHALLENGE
    • Introduction
    • Important challenge rules
    • iOS
      • Get started
      • References (iOS)
    • Android
      • Get started
      • References (Android)
    • User interface
      • iOS
        • Get started
      • Android
        • Get started
  • GROUP
    • Introduction
    • iOS
      • Get started
    • Android
      • Get started
  • React Native
    • Get started
    • Integration
  • Flutter
    • Get started
    • Integration
  • Push services
    • Introduction
    • Push Trip Data
    • Push Deleted trip
    • Push Crash Data
    • Push Diagnosis Data
  • ADMIN SERVICES
    • Beacon
      • Add
      • Replace
      • Delete
      • Configuration
    • Challenges
      • List of challenges
      • Challenge details
      • Registered users
      • Challenge ranking
      • Users' progress
      • Definitions
    • Customer
      • Activity timeline
    • Driver
      • Timeline
      • Synthesis
      • Identity
      • Status
      • Add or update a metadata
      • Vehicles
      • Profile
      • Application diagnoses
    • Drivers
      • Account
      • Statistics
      • Ranking
      • Expired accounts
    • Group
      • Timeline
      • Synthesis
    • Trips
      • Add or update a metadata
      • Delete a metadata
    • Vehicle
      • Create
      • Characteristics
      • Configuration
      • Statistics
      • Update mileage
      • Tire and brake wear update
      • References
  • Crashes
    • Annotate a crash
    • Revoke crash location URL
  • ENTERPRISE SERVICES
    • Introduction
    • Teams
      • Create a team
      • List of teams
      • Enable or disable a team
    • Hyper-admins
      • Create a hyper-admin
      • List of hyper-admins
      • Delete a hyper-admin
    • Monitoring
      • Get a push trip data report
      • Get a push crash data report
      • Request to retry failed trips
      • Request to retry failed crashes
      • Get the status of a task
  • Release notes
    • Changelog
      • iOS
      • Android
      • UI iOS
      • UI Android
Powered by GitBook
On this page
  • Vehicle statistics
  • Response
  • WearComponent

Was this helpful?

Export as PDF
  1. ADMIN SERVICES
  2. Vehicle

Statistics

PreviousConfigurationNextUpdate mileage

Last updated 1 year ago

Was this helpful?

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 .

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

{
    "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"
    }
}
Unauthorized
Not found
Unprocessable Entity
Forbidden

Response

The table below summarizes the list of vehicle statistics data.

Field
Type
Description

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

Field
Type
Description

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)

link
WearComponent
WearComponent
WearComponent
WearComponent