> ## 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 path channel

> Manage channels in Path: list, get, and page through the people attributed to a channel.

`talkvalue path channel` groups the read commands you need to inspect channels and the people attributed to them. The same dataset powers the Channels surface in the dashboard, so every channel you see in the app is reachable from the CLI.

## Subcommands

| Command                                               | Description                                     |
| ----------------------------------------------------- | ----------------------------------------------- |
| [`channel list`](/cli/commands/path/channel/list)     | List every channel in the active workspace      |
| [`channel get`](/cli/commands/path/channel/get)       | Fetch a single channel by ID                    |
| [`channel people`](/cli/commands/path/channel/people) | Page through the people attributed to a channel |

## Typical workflow

Find a channel, inspect it, then page through the people attributed to it:

```bash theme={null}
talkvalue path channel list
talkvalue path channel get 7
talkvalue path channel people 7 --sort "joinedAt,desc" --page-size 25
```

Every read prints a table by default and respects `--json` for piping into `jq`. Channels appear in dashboard analytics. Pair these commands with [`path analysis channel-attribution`](/cli/commands/path/analysis/channel-attribution) when you need reach and overlap numbers.

## See also

* [Channels](/path/manage/channels). The dashboard surface this group mirrors.
* [`path event`](/cli/commands/path/event/index). The parallel group for events.
* [Recipe: Channel analysis](/cli/recipes/channel-analysis). Pairs `channel people` with attribution metrics.
* [Attribution](/path/analytics/attribution). Channel-level reach and contribution.
