Tesla
Interior Temperature
Returns the vehicle’s last known exterior thermometer reading. See our climate setting enpoints for managing a cabin temperate.
GET
/v2.0/vehicles/{id}/{make}/thermometer/interior
This endpoint is currently available for TESLA
Permission
read_thermometer
Request
Path
idrequired
string
The vehicle id of the vehicle you are making a request to.
makerequired
string
The make of the vehicle you are making a request to.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/thermometer/interior" \
-H "Authorization: Bearer {token}" \
-X "GET"
Response
temperature
Default: "celsius"number
The current interior temperature of the vehicle.
{
"temperature": 25.64
}
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/thermometer/interior" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
"temperature": 25.64
}