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

# Flavors

> List available compute flavors (instance types).

Flavors define the hardware configuration available for compute instances — including CPU, memory, and GPU specifications.

## Subcommands

* [list](#list) — List available flavors

***

## list

List available flavors, optionally filtered by organization and region.

```bash theme={null}
nscale flavors list [flags]
```

### Flags

<table>
  <thead><tr><th>Flag</th><th>Description</th></tr></thead>

  <tbody>
    <tr><td><code>--org string</code></td><td>Organization ID</td></tr>
    <tr><td><code>--region string</code></td><td>Region ID</td></tr>

    <tr>
      <td><code>--json</code></td>
      <td>Emit the full JSON payload (mutually exclusive with <code>-q</code>)</td>
    </tr>

    <tr>
      <td><code>-q, --query stringArray</code></td>
      <td>jq filter for value extraction (see <a href="/docs/cli/query-output">Query output with <code>-q</code></a>)</td>
    </tr>
  </tbody>
</table>

### Examples

```bash theme={null}
# List all flavors in a region
nscale flavors list --org <org-id> --region <region-id>

# Output as JSON
nscale flavors list --org <org-id> --region <region-id> --json
```
