Vehicle History

Get vehicle mileage history

Retrieve historical mileage records for a vehicle to detect odometer rollbacks or inconsistencies.

get/mileage-history/{vin}

Path parameters

vinstring required
Example:JTDKDTB33J1604823

17-character Vehicle Identification Number

Response

Mileage history records

vinstring required
totalRecordsinteger required

Total number of mileage records

Example response

{
  "vin": "JTDKDTB33J1604823",
  "totalRecords": 5,
  "mileageHistory": [
    {
      "mileage": 45000,
      "createdAt": "2023-06-15T10:30:00Z"
    }
  ]
}

Changes

Changed in 1 of the 3 revisions of this API.9

    • added the non-success response with the status 403

      response-non-success-status-added

    • added the non-success response with the status 429

      response-non-success-status-added

    • removed the non-success response with the status 401

      response-non-success-status-removed

    • added the optional property code to the response with the 400 status

      response-optional-property-added

    • added the optional property code to the response with the 404 status

      response-optional-property-added

    • added the optional property message to the response with the 400 status

      response-optional-property-added

    • added the optional property message to the response with the 404 status

      response-optional-property-added

    • added the optional property resetDate to the response with the 400 status

      response-optional-property-added

    • added the optional property resetDate to the response with the 404 status

      response-optional-property-added