Skip to main content
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

CommandDescription
event listList every event in the active workspace
event getFetch a single event by ID
event person listPage through the people registered for an event
event person exportStream the event registrants as CSV to stdout

Typical workflow

Find an event, inspect it, then walk the people who registered:
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