get_driving_history
Retrieve vehicle driving history data within specified date ranges using VIN, start date, and end date parameters.
Instructions
Get driving history for a vehicle within a date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date in ISO format (YYYY-MM-DD or YYYY-MM-DDTHH:mm:ssZ) | |
limit | No | Maximum number of drives to return | |
start_date | No | Start date in ISO format (YYYY-MM-DD or YYYY-MM-DDTHH:mm:ssZ) | |
vin | Yes | Vehicle identification number (VIN) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date in ISO format (YYYY-MM-DD or YYYY-MM-DDTHH:mm:ssZ)",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of drives to return",
"type": "number"
},
"start_date": {
"description": "Start date in ISO format (YYYY-MM-DD or YYYY-MM-DDTHH:mm:ssZ)",
"type": "string"
},
"vin": {
"description": "Vehicle identification number (VIN)",
"type": "string"
}
},
"required": [
"vin"
],
"type": "object"
}