teslamateapi icon indicating copy to clipboard operation
teslamateapi copied to clipboard

Summary Endpoint For more climate information

Open feelingfrance opened this issue 1 month ago • 1 comments

json in /api/v1/cars/:CarID/status, the climate_details has "inside_temp" and "outside_temp" information, can you add more information for climate such as driver_temp_setting? thanks

feelingfrance avatar Nov 20 '25 12:11 feelingfrance

Hi @feelingfrance,

The TeslaMate API exposes in the car status endpoint only the data that comes from the official TeslaMate MQTT topics (see https://docs.teslamate.org/docs/integrations/mqtt/). For climate-related fields, the available values are currently only inside_temp, outside_temp, and is_climate_on.

In TeslaMate, driver_temp_setting is retrieved from the positions table. Because of that, we have two possible approaches:

  1. Extend the car status endpoint to also read this value from the database (not my preferred option).
  2. Update TeslaMate itself to publish driver_temp_setting via MQTT, and then update the car status endpoint to include it.

LukStankovic avatar Nov 30 '25 16:11 LukStankovic