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

# Website Scans and Organization Management

> List crawled domains and scan history with tolmo website, and switch between organizations with tolmo org. Manage your active context from the terminal.

Tolmo provides commands to view your platform's website scan data and to manage which organization is active in your CLI session. This page covers `tolmo website` and `tolmo org`.

## Website commands

Use the `tolmo website` subcommands to review crawled domains and their scan history. Crawling itself is managed entirely by the platform — these commands let you inspect the results from your terminal.

<CardGroup cols={2}>
  <Card title="List crawled domains" icon="globe">
    Display all domains the platform has crawled for your organization:

    ```bash theme={null}
    tolmo website list
    ```
  </Card>

  <Card title="View scan history" icon="clock">
    List scan history with timestamps to see when each domain was last scanned:

    ```bash theme={null}
    tolmo website scans
    ```
  </Card>
</CardGroup>

<Note>
  Crawl scheduling and configuration are managed by the Tolmo platform. Use `tolmo website list` and `tolmo website scans` to review results — you don't need to trigger scans manually from the CLI.
</Note>

## Organization management

Your CLI session always operates in the context of a single active organization. Use `tolmo org` to list the organizations available to your account and switch between them.

### List organizations

See every organization your account has access to:

```bash theme={null}
tolmo org list
```

### Switch the active organization

Set a new active organization for all subsequent commands in the current profile. Replace `<slug>` with the organization's slug from `tolmo org list`:

```bash theme={null}
tolmo org switch <slug>
```

The active organization is stored in the current profile. If you want to target a different organization for only a single command without permanently switching, use the global `--org <slug>` flag instead — no profile update is made.

To switch the active organization in a specific named profile, pass `--profile`:

```bash theme={null}
tolmo org list
tolmo org switch my-other-org
tolmo org switch --profile staging my-staging-org
```

<Tip>
  Run `tolmo auth status` at any time to confirm which organization and profile are currently active in your session. This is especially useful when working across multiple profiles or organizations in the same terminal.
</Tip>
