---
sidebar_position: 18
---

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

# `lium schedules`

List and cancel scheduled pod removals. Schedules are **created** via [`lium up --ttl`](./up.md) or `--until`; this command manages the existing ones.

```bash
lium schedules SUBCOMMAND [ARGS]
```

Running `lium schedules` with no subcommand defaults to `list`.

## Subcommands

### `lium schedules list`

List all scheduled pod removals on your account.

```bash
lium schedules list
```

The output assigns each schedule a numeric index, used by `rm`.

### `lium schedules rm INDICES`

Cancel one or more scheduled removals by index.

```bash
lium schedules rm 1
lium schedules rm 1,2,5      # Multiple
lium schedules rm all        # Cancel everything
```

## Examples

```bash
# Schedule a pod to auto-stop in 6 hours (creates the schedule)
lium up --gpu H200 --ttl 6h

# Or at a specific local time
lium up --gpu H200 --until "tomorrow 09:00"

# List active schedules
lium schedules list

# Cancel one
lium schedules rm 1
```

## See also

- [Scheduled termination](/pod-users/scheduled-termination) — concept guide
- [`lium up`](./up.md) — `--ttl` and `--until` flags
- [`lium rm`](./rm.md) — stop a pod immediately instead
