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

# talkvalue auth list

> List every saved profile on this machine with its organization, email, and active marker.

Show every profile saved on the current machine. Each row prints the profile name, organization, member email, and an `*` next to the active profile. Use it to remember which workspaces this machine has credentials for.

## Synopsis

```bash theme={null}
talkvalue auth list
```

## Options

None. Output respects the global `--format` and `--json` flags.

## Examples

### 1. List in a terminal

```bash theme={null}
talkvalue auth list
```

Prints a four-column table: Profile, Organization, Email, Active. The active profile has `*` in the Active column.

### 2. List as JSON

```bash theme={null}
talkvalue auth list --json | jq '.data'
```

Returns the raw array so you can filter to a specific profile or organization in a script.

### 3. Find the profile bound to a known org

```bash theme={null}
talkvalue auth list --json \
  | jq -r '.data[] | select(.orgName == "Acme Inc.") | .profile'
```

Useful when you have multiple profiles and need to feed the matching one into `--profile <name>` for a downstream command.

## Response

```jsonc theme={null}
{
  "data": [
    {
      "profile": "you",
      "orgName": "Acme Inc.",
      "memberEmail": "you@example.com",
      "active": true
    },
    {
      "profile": "staging",
      "orgName": "Acme Staging",
      "memberEmail": "you@example.com",
      "active": false
    }
  ]
}
```

`active` is a boolean in JSON. In the table view it renders as `*` for the active profile and an empty cell for the rest.

## See also

* [`talkvalue auth login`](/cli/commands/auth/login). Add a new profile.
* [`talkvalue auth status`](/cli/commands/auth/status). Full detail on the active profile.
* [`talkvalue auth switch`](/cli/commands/auth/switch). Change the active organization.
* [Authentication](/cli/authentication). `--profile` and `TALKVALUE_PROFILE` precedence.
