Commands
conversation
List and view AI conversations
Commands
Section titled “Commands”sentry conversation list <org>
Section titled “sentry conversation list <org>”List recent AI conversations
Arguments:
| Argument | Description |
|---|---|
<org> |
Organization slug |
Options:
| Option | Description |
|---|---|
-n, --limit <limit> |
Number of conversations (1-1000) (default: "25") |
-q, --query <query> |
Search query |
-t, --period <period> |
Time range: "7d", "2026-07-01..2026-08-01", ">=2026-07-01" (default: "7d") |
-f, --fresh |
Bypass cache, re-detect projects, and fetch fresh data |
-c, --cursor <cursor> |
Navigate pages: "next", "prev", "first" (or raw cursor string) |
sentry conversation view <org/conversation-id>
Section titled “sentry conversation view <org/conversation-id>”View an AI conversation transcript
Arguments:
| Argument | Description |
|---|---|
<org/conversation-id> |
[<org>/]<conversation-id> - Org (optional) and conversation ID |
Options:
| Option | Description |
|---|---|
-f, --fresh |
Bypass cache, re-detect projects, and fetch fresh data |
All commands support --json for machine-readable output and --fields to select specific JSON fields.
Examples
Section titled “Examples”List conversations
Section titled “List conversations”# List recent AI conversationssentry conversation list
# Explicit organizationsentry conversation list my-org
# Show more, last 24 hourssentry conversation list --limit 50 --period 24h
# Filter conversationssentry conversation list -q "has:errors"
# Paginate through resultssentry conversation list my-org -c nextView a conversation transcript
Section titled “View a conversation transcript”# View full transcriptsentry conversation view my-org conv-123
# JSON outputsentry conversation view my-org conv-123 --json