get_vehicle_current_state
Retrieve real-time Tesla vehicle data including location, battery level, and odometer reading using the VIN to monitor car status and performance.
Instructions
Get the current state of a vehicle including location, battery level, odometer reading
Input Schema
Name | Required | Description | Default |
---|---|---|---|
use_cache | No | Whether to use cached data to avoid waking the vehicle | |
vin | Yes | Vehicle identification number (VIN) |
Input Schema (JSON Schema)
{
"properties": {
"use_cache": {
"default": true,
"description": "Whether to use cached data to avoid waking the vehicle",
"type": "boolean"
},
"vin": {
"description": "Vehicle identification number (VIN)",
"type": "string"
}
},
"required": [
"vin"
],
"type": "object"
}