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

# insights feedback list

> List user feedback for an Alpic environment

List feedback captured from users and models, including its source, client, and timestamp.

## Usage

```bash theme={null}
alpic insights feedback list
```

Lists feedback from the last seven days for the environment in the local `.alpic` configuration.

## Extended Usage

Select an environment by ID and use an explicit time range:

```bash theme={null}
alpic insights feedback list \
  --environment-id <environmentId> \
  --since 24h \
  --until 1h
```

Select an environment by name within a project:

```bash theme={null}
alpic insights feedback list --project-name my-project --environment-name production
```

The project can also be selected by ID:

```bash theme={null}
alpic insights feedback list --project-id <projectId> --environment-name production
```

Filter and page through feedback:

```bash theme={null}
alpic insights feedback list \
  --search timeout \
  --client-id claude-desktop \
  --limit 100 \
  --offset 100
```

Emit the complete API response for automation:

```bash theme={null}
alpic insights feedback list --environment-id <environmentId> --json --non-interactive
```

<Note>Human-readable output truncates long feedback content. `--json` preserves complete content.</Note>

## Options

| Flag                 | Description                                               | Default |
| -------------------- | --------------------------------------------------------- | ------- |
| `--environment-id`   | Select an environment by ID                               |         |
| `--environment-name` | Select an environment by name                             |         |
| `--project-id`       | Provide the project context by ID                         |         |
| `--project-name`     | Provide the project context by name                       |         |
| `--since`            | Show feedback after a relative duration or ISO 8601 date  | `7d`    |
| `--until`            | Show feedback before a relative duration or ISO 8601 date | now     |
| `--search`           | Search feedback content and source                        |         |
| `--client-id`        | Filter by stable MCP client ID. Repeatable.               |         |
| `--limit`            | Return between 1 and 200 feedback entries                 | `50`    |
| `--offset`           | Skip this many feedback entries                           | `0`     |
| `--json`             | Print the unmodified API response as JSON                 | `false` |
| `--non-interactive`  | Skip interactive prompts                                  |         |

<Tip>When the current directory is linked to an environment, the environment and project flags can be omitted.</Tip>
