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

# Sandboxes weergeven

export const SandboxCliConfigHint = () => {
  if (typeof document === "undefined") {
    return null;
  } else {
    return <Note>Before running the command-line related example code in this document, please refer to the <Link href="/docs/nl/guides/sandbox-cli">tutorial</Link> to install the CLI and complete <Link href="/docs/nl/guides/sandbox-cli-auth">authentication</Link>.</Note>;
  }
};

<SandboxCliConfigHint />

### Alle actieve sandboxes weergeven

Gebruik de volgende opdracht om alle actieve sandboxes weer te geven:

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox list
```

### Filteren op status

Gebruik de vlag `--state` om sandboxes op status te filteren. Ondersteunde waarden zijn "**running**", "**paused**", of beide.
Bijvoorbeeld, om zowel actieve als gepauzeerde sandboxes op te halen:

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox list --state running,paused
```

### Filteren op metadata

Gebruik de vlag `--metadata` om sandboxes op metadata te filteren.

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox list --metadata key1=value1,key2=value2
```

### Limiet voor lijst

Gebruik de vlag `--limit` om het aantal sandboxes te beperken dat door de opdracht wordt geretourneerd.
Als de vlag `--limit` niet is opgegeven, retourneert de opdracht alle sandboxes.

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox list --limit 10
```
