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

# nsc bazel invocation list

List recent Bazel invocations.

`bazel invocation list` shows the Bazel invocations that Namespace has recorded through its remote cache and remote execution service, most recent first. It's useful for finding an invocation ID to investigate further, for example with `nsc bazel invocation report`.

By default the command returns your most recent invocations regardless of age. Use `--since` to constrain the list to a recent time window, and `--max_entries` to control how many rows come back.

## Usage

```bash theme={null}
nsc bazel invocation list [--max_entries <count>] [--output <plain|json>] [--since <duration>]
```

### Example

```bash theme={null}
nsc bazel invocation list --since 24h
```

## Options

<h3 id="--max_entries-int32">
  \--max\_entries \<int32>
</h3>

Maximum number of invocations to return (up to 100). Defaults to `50`.

<h3 id="--output--o-format">
  \--output, -o \<format>
</h3>

Output format. One of `plain` or `json`. Defaults to `plain`.

<h3 id="--since-duration">
  \--since \<duration>
</h3>

Only list invocations started within this duration. Defaults to `0s`, which does not constrain the list.

## Related Topics

* [nsc bazel invocation report](/docs/reference/cli/bazel-invocation-report)
