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

# LowVoltageBattery Signals

### StateOfCharge

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

Indicates the current charge level of the low voltage battery as a percentage (0 - 100)

<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": 95,
      "unit": "percent"
    }
    ```
  </Expandable>
</ParamField>

### Status

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

Represents the current operational status of the low voltage battery. (GOOD, WARN, BAD)

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

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