> ## Documentation Index
> Fetch the complete documentation index at: https://smartcar.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Climate Signals

### ExternalTemperature

<Badge color="green">GET</Badge> `/vehicles/{vehicleId}/signals/climate-externaltemperature`

The current temperature measured outside the vehicle.

<ParamField path="body" type="object">
  <Expandable title="body properties">
    <ParamField path="unit" type="string" required={false} />

    <ParamField path="value" type="number" required={false} />

    ```json Example theme={null}
    {
      "value": 14.5,
      "unit": "celsius"
    }
    ```
  </Expandable>
</ParamField>

### InternalTemperature

<Badge color="green">GET</Badge> `/vehicles/{vehicleId}/signals/climate-internaltemperature`

The current temperature measured inside the vehicle's cabin.

<ParamField path="body" type="object">
  <Expandable title="body properties">
    <ParamField path="unit" type="string" required={false} />

    <ParamField path="value" type="number" required={false} />

    ```json Example theme={null}
    {
      "value": 21,
      "unit": "celsius"
    }
    ```
  </Expandable>
</ParamField>
