Get a timeline of your crashes
The Crash Timeline Service delivers chronological reports of detected crashes involving drivers within your organization, with reports available on both a weekly and monthly basis.
Weekly and monthly timelines include the following indicators:
Total crashes: the total number of crashes, including both confirmed and unconfirmed events.
Confirmed crashes: the number of crashes validated by either the classifier or the supervisor.
Users with detected crashes: the total number of users for whom at least one crash was detected.
Users with confirmed crashes: the number of users with at least one crash confirmed by the classifier or a supervisor.
Unconfirmed crashes can be derived by subtracting the number of confirmed crashes from the total crashes.
DriveKit admin API key
OK
Invalid API key
Timeline Not Found
GET /v3/drivekit/admin/crashes/timeline HTTP/1.1
Host: service.drivequant.com
Accept: */*
{
"month": {
"date": [
"2025-08-01T12:00:00.000+00:00",
"2025-09-01T12:00:00.000+00:00"
],
"user": [
{
"total": [
11,
7
],
"confirmed": [
4,
0
],
"confirmedBySupervisor": [
0,
0
]
}
],
"crash": [
{
"total": [
1100,
174
],
"confirmed": [
7,
0
],
"confirmedBySupervisor": [
0,
0
]
}
]
},
"week": {
"date": [
"2025-08-25T12:00:00.000+00:00",
"2025-09-01T12:00:00.000+00:00",
"2025-09-08T12:00:00.000+00:00"
],
"user": [
{
"total": [
9,
7,
4
],
"confirmed": [
0,
0,
0
],
"confirmedBySupervisor": [
0,
0,
0
]
}
],
"crash": [
{
"total": [
249,
95,
71
],
"confirmed": [
0,
0,
0
],
"confirmedBySupervisor": [
0,
0,
0
]
}
]
}
}
Response
The table below summarizes the list of response data.
Timeline
The table below summarizes the list of timeline data.
date
array[date]
List of dates representing the first day of the timeline period (e.g., week or month)
Date format: YYYY-MM-dd’T’HH:mm:ss.SSSZ
user
array[object]
Report of unique users for whom a crash event was detected during the period (see User)
User
The table below summarizes the list of user data.
total
int
Total number of unique users for whom a crash event was detected during the period
confirmed
int
Number of unique users with a crash event confirmed by the classifier
confirmedBySupervisor
int
Number of unique users with a crash event confirmed by the classifier and the supervisor
Crash
The table below summarizes the list of crash data.
total
int
Total number of crash events analyzed during the period
confirmed
int
Number of crash events confirmed by the classifier
confirmedBySupervisor
int
Number of crash events confirmed by the classifier and the supervisor
Last updated
Was this helpful?