> ## Documentation Index
> Fetch the complete documentation index at: https://docs.basecut.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# basecut snapshot inspect

> Inspect snapshot metadata by reference

Inspect a snapshot by reference.

## Usage

```bash theme={null}
basecut snapshot inspect <snapshot-ref> [flags]
```

## Arguments

| Argument         | Description                                                                             |
| ---------------- | --------------------------------------------------------------------------------------- |
| `<snapshot-ref>` | Snapshot identifier. Supported forms: UUID, `name:tag`, or `name` (resolves to latest). |

## Flags

| Flag               | Default     | Description                      |
| ------------------ | ----------- | -------------------------------- |
| `--json`           | `false`     | Output raw JSON response.        |
| `--profile <name>` | `default`   | Credential profile for API auth. |
| `--api-key <key>`  | env/profile | API key override.                |

## Examples

```bash theme={null}
# Inspect by UUID
basecut snapshot inspect 550e8400-e29b-41d4-a716-446655440000

# Inspect latest version for a name
basecut snapshot inspect dev-seed

# Inspect specific version
basecut snapshot inspect dev-seed:v1

# JSON output
basecut snapshot inspect dev-seed --json
```
