> ## 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 reservation list

Lists your reservations.

`reservation list` prints your capacity reservations, both those still
pending and those already fulfilled. Use it to find the ID of a reservation
you created earlier, so you can check on it with `reservation describe`,
wait for it with `reservation wait`, or cancel it with `reservation cancel`.

By default the list is limited to reservations that have been active within
the last 7 days; pass `--since 0` to see the full history instead.

## Usage

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

### Example

```bash theme={null}
nsc reservation list
```

To list all reservations regardless of age, disable the time window:

```bash theme={null}
nsc reservation list --since 0
```

## Options

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

Output format. One of `plain` or `json`. Default is `plain`.

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

Constrain the list to reservations active within this duration. Set to `0`
to list all. Default is `168h` (7 days).

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

Maximum number of reservations to return. Default is `100`.

## Related Topics

* [nsc reservation describe](/docs/reference/cli/reservation-describe)
