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

> Inspect async snapshot job status by job ID

Inspect an async snapshot job by job ID.

## Usage

```bash theme={null}
basecut snapshot status <job-id> [flags]
```

## Arguments

| Argument   | Description                                                      |
| ---------- | ---------------------------------------------------------------- |
| `<job-id>` | Snapshot job UUID returned by `basecut snapshot create --async`. |

## 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}
# Check status for an async job
basecut snapshot status 550e8400-e29b-41d4-a716-446655440000

# JSON output
basecut snapshot status 550e8400-e29b-41d4-a716-446655440000 --json
```
