---
sidebar_position: 12
---

> ## 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 ps`

List your active pods.

```bash
lium ps [OPTIONS]
```

## Options

| Flag | Effect |
|------|--------|
| `--all, -a` | Show all pods including stopped |
| `--format FORMAT` | Output format: `table`, `json`, `csv` |
| `--sort FIELD` | Sort by `name`, `status`, `cost`, or `uptime` |

## Examples

```bash
lium ps                   # Running pods
lium ps --all             # Include stopped pods
lium ps --format json     # JSON output
lium ps --sort cost       # Sort by cost
```

The numeric index in the first column is reused by [`lium ssh`](./ssh), [`lium exec`](./exec), [`lium scp`](./scp), [`lium rsync`](./rsync), and [`lium rm`](./rm).

## See also

- [`lium up`](./up) — create a pod
- [`lium rm`](./rm) — stop a pod
