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

> ## Agent Instructions
> Reactor hosts multiple models, each with its own connect slug (modelName) and command/event schema. The catalog of every model — slug, typed SDK package, and links to its schema — is at /model-api-reference/overview. Some models expose one slug per experience (e.g. HappyOyster); always take the slug from the model's own pages, never guess it.
> Fastest path to a working app: `npx create-reactor-app my-app --model=<slug>` scaffolds a complete app with secure auth wired up. Typed TypeScript SDKs are published as @reactor-models/<model>; Python uses the base reactor-sdk package.
> Auth: exchange an API key (rk_...) for a JWT via POST https://api.reactor.inc/tokens from your server. Never put the API key in client-side code.
> Append .md to any docs URL for clean Markdown. Search these docs via the MCP server at https://docs.reactor.inc/mcp.

# reactor model ls

> List models registered against the current account

```sh theme={"theme":{"light":"github-light","dark":"github-dark-high-contrast"}}
reactor model ls [flags]
```

## Description

List models registered against the current account.

Also reachable as `reactor model ls` for users who prefer the qualified
form; both invocations are identical.

By default the output is a plain list of canonical `<org>/<name>` identifiers,
one per line, so it can be piped into other commands. Pass `-l` for a long-
format table with extra columns (visibility, ownership, status).

The listing is filtered to models owned by the calling account by default.
Pass `--all` (`-a`) to also include public models owned by other accounts
(typically platform models published by Reactor itself). Short bool flags
compose, so `-la` is the same as `-l -a` (mirrors ls(1)).

Pass `--name` \<substring> to narrow the listing to canonical names that
contain the given substring (case-insensitive). The filter is applied
server-side via the same query parameter `reactor model status` uses
under the hood.

The `-l` table and the structured `-o`/`--output` formats (json, yaml, md) add
per-region running-instance counts for models you own.

**Examples:**

```sh theme={"theme":{"light":"github-light","dark":"github-dark-high-contrast"}}
reactor ls                          # owned models, names only
reactor ls -l                       # owned models, long format (with regions)
reactor ls -a                       # everything visible, names only
reactor ls -la                      # everything visible, long format
reactor ls --name vision            # owned names containing "vision"
reactor ls -la --name reactor       # public reactor models, long format
reactor ls -o json                  # structured output with per-region counts
reactor ls -o yaml                  # YAML variant
reactor ls -o md                    # Markdown table
reactor model ls                    # qualified form, same behaviour
```

## Options

| Flag                  | Description                                                              |
| --------------------- | ------------------------------------------------------------------------ |
| `-a, --all`           | Include public models that are not owned by the current account          |
| `-l, --long`          | Long format: emit a table with visibility, ownership, and status columns |
| `--name string`       | Case-insensitive substring filter on the canonical model name            |
| `-o, --output string` | Output format: table, json, yaml, md (default "table")                   |

## Global options

| Flag              | Description                                                                           |
| ----------------- | ------------------------------------------------------------------------------------- |
| `--server string` | Reactor API server URL (default "[https://api.reactor.inc](https://api.reactor.inc)") |
| `-v, --verbose`   | Enable verbose output                                                                 |

## See also

* [reactor model](/deploy/cli-reference/reactor_model) - Model management commands
