Characteristics

For each vehicle in your fleet, you can access to technical characteristics set when you create a vehicle or retrieved in DriveQuant vehicle database:

  • Brand, model and version of the vehicle

  • Engine configuration

  • Consumption data

  • Gearbox configuration

  • Vehicle dimensions

  • Tyre dimensions

If you have your admin API key, you can try the API via this link.

Vehicle characteristics

GET https://service.drivequant.com/v3/drivekit/admin/vehicles/{vehicleId}/characteristics

Retrieve vehicle characteristics using the vehicle unique identifier.

Path Parameters

NameTypeDescription

vehicleId*

string

Vehicle unique identifier

Headers

NameTypeDescription

DriveKit-Admin-API-Key*

string

Admin API Key

{
  "brand": "Bmw",
  "model": "Serie 1 F21 M 3 Portes",
  "version": "(F21) (2) 140I M PERFORMANCE 3P",
  "year": "2016",
  "typeIndex": 2,
  "engineIndex": 1,
  "power": 340,
  "mass": 1520,
  "engineDisplacement": 2998,
  "gearboxIndex": 3,
  "consumption": 7.8,
  "autoGearboxNumber": 0,
  "frontTireSize": "225/40/18",
  "rearTireSize": "245/35/18",
  "length": 4.32,
  "width": 1.76,
  "height": 1.42,
  "engineCylinderNb": 6,
  "driveWheels": 1
}

Response

Description of each vehicle characteristics is available here.

Last updated