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

# Surveillance Signals

### Brand

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

Indicates the brand of surveillance available on the vehicle e.g. for Tesla this would be Sentry Mode

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

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

### IsEnabled

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

Indicates if the surveillance system is enabled

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

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