> ## 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 event

> Manage events in Path: list, get, and pull the people who registered.

`talkvalue path event` groups the read commands you need to inspect events and the people who registered for them. The same dataset powers the Events surface in the dashboard, so every event you see in the app is reachable from the CLI.

## Subcommands

| Command                                                         | Description                                     |
| --------------------------------------------------------------- | ----------------------------------------------- |
| [`event list`](/cli/commands/path/event/list)                   | List every event in the active workspace        |
| [`event get`](/cli/commands/path/event/get)                     | Fetch a single event by ID                      |
| [`event person list`](/cli/commands/path/event/person-list)     | Page through the people registered for an event |
| [`event person export`](/cli/commands/path/event/person-export) | Stream the event registrants as CSV to stdout   |

## Typical workflow

Find an event, inspect it, then walk the people who registered:

```bash theme={null}
talkvalue path event list
talkvalue path event get 18
talkvalue path event person list 18 --sort "joinedAt,desc" --page-size 25
talkvalue path event person export 18 > spring-summit.csv
```

Every read prints a table by default and respects `--json` for piping into `jq`. The `person export` subcommand is the exception. It always emits CSV regardless of `--json` so you can redirect straight to a file.

## See also

* [Events](/path/manage/events). The dashboard surface this group mirrors.
* [`path channel`](/cli/commands/path/channel/index). The parallel group for channels.
* [Recipe: New registrants this week](/cli/recipes/new-registrants). Pairs `event person list` with `--sort joinedAt,desc`.
* [Recipe: CSV import](/cli/recipes/csv-import). `event person export` complements the import flow.
