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

# VehicleIdentification Signals

### ExteriorColor

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

The exterior paint color of the vehicle as specified by the manufacturer.

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

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

### Nickname

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

Name personally assigned by the vehicle by the owner.

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

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

### Packages

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

Optional feature sets or bundle of accessories installed on the vehicle beyond the standard trim level.

<ParamField path="body" type="object">
  <Expandable title="body properties">
    <ParamField path="values" type="array" required={true} />

    ```json Example theme={null}
    {
      "values": [
        "Base",
        "MY2021"
      ]
    }
    ```
  </Expandable>
</ParamField>

### Trim

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

Trim level of the vehicle that indicates the specific variant within a model line.

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

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

### VIN

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

Vehicle Identification Number - A unique 17-character alphanumeric code assigned to each vehicle that serves as its identifier. Contains encoded information about the vehicle's manufacturer, model, features, and production details.

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

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