# atmos vendor config get

Read a raw value from `vendor.yaml` using an arbitrary dot-notation path. This is the
canonical form. [`atmos vendor get <component>`](/cli/commands/vendor/vendor-get) is a
convenience alias that resolves a component name to its `spec.sources[N].version`
path and calls this same engine — use `atmos vendor config get` directly for paths
other than a component's pinned version.

## Usage

```shell
atmos vendor config get <path> [--file <manifest>]
```

## Examples

```shell
atmos vendor config get spec.sources[0].version
```

## Arguments

- **`<path>` (required)**
  Dot-notation path into the vendor manifest (e.g. 
  `spec.sources[0].version`
  ).

## Flags

- **`--file` (string, default `./vendor.yaml`)**
  The vendor manifest file to read.

## Related

- Alias (by component name): [`atmos vendor get`](/cli/commands/vendor/vendor-get)
