get_mileage_at_location
Retrieve mileage data for Tesla vehicle drives to a specified location within a date range using VIN and location inputs.
Instructions
Find drives to a specific location and return mileage information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date to search until (ISO format) | |
location | Yes | Location name or address to search for | |
start_date | No | Start date to search from (ISO format) | |
vin | Yes | Vehicle identification number (VIN) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date to search until (ISO format)",
"type": "string"
},
"location": {
"description": "Location name or address to search for",
"type": "string"
},
"start_date": {
"description": "Start date to search from (ISO format)",
"type": "string"
},
"vin": {
"description": "Vehicle identification number (VIN)",
"type": "string"
}
},
"required": [
"vin",
"location"
],
"type": "object"
}