> ## 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.

# ConnectivityStatus Signals

### IsAsleep

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

Boolean indicator that shows whether the vehicle is in a low-power or sleep state.

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

    ```json Example theme={null}
    {
      "value": false
    }
    ```
  </Expandable>
</ParamField>

### IsDigitalKeyPaired

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

Boolean indicator that shows whether a digital key has been successfully paired with the vehicle. Currently required for Tesla

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

    ```json Example theme={null}
    {
      "value": false
    }
    ```
  </Expandable>
</ParamField>

### IsOnline

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

Boolean indicator that shows the connectivity status of the vehicle.

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

    ```json Example theme={null}
    {
      "value": true
    }
    ```
  </Expandable>
</ParamField>
