Skip to content
Docs GitHub

conversation

List and view AI conversations

List recent AI conversations

Arguments:

ArgumentDescription
<org>Organization slug

Options:

OptionDescription
-n, --limit <limit>Number of conversations (1-1000) (default: "25")
-q, --query <query>Search query
-t, --period <period>Time range: "7d", "2026-04-01..2026-05-01", ">=2026-04-01" (default: "7d")
-f, --freshBypass 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:

ArgumentDescription
<org>Organization slug (optional if auto-detected)
<conversation-id>AI conversation ID

Options:

OptionDescription
-f, --freshBypass cache, re-detect projects, and fetch fresh data

All commands support --json for machine-readable output and --fields to select specific JSON fields.

Terminal window
# List recent AI conversations
sentry conversation list
# Explicit organization
sentry conversation list my-org
# Show more, last 24 hours
sentry conversation list --limit 50 --period 24h
# Filter conversations
sentry conversation list -q "has:errors"
# Paginate through results
sentry conversation list my-org -c next
Terminal window
# View full transcript
sentry conversation view my-org conv-123
# JSON output
sentry conversation view my-org conv-123 --json