Skip to content
Docs GitHub

project

Manage Sentry projects.

Commands

sentry project list

List projects you have access to.

Terminal window
# List all projects
sentry project list
# List projects in a specific organization
sentry project list <org-slug>
# Filter by platform
sentry project list --platform javascript

Arguments:

ArgumentDescription
[org-slug]Optional organization slug to filter by

Options:

OptionDescription
--platform <platform>Filter by platform (e.g., javascript, python)
--jsonOutput as JSON

Example output:

ORG SLUG PLATFORM TEAM
my-org frontend javascript web-team
my-org backend python api-team
my-org mobile-ios cocoa mobile-team

sentry project view

View details of a specific project.

Terminal window
sentry project view <project-slug>

Arguments:

ArgumentDescription
<project-slug>The project slug

Options:

OptionDescription
--org <org-slug>Organization slug (if not specified, uses default)
-w, --webOpen in browser
--jsonOutput as JSON

Example:

Terminal window
sentry project view frontend --org my-org
Project: frontend
Organization: my-org
Platform: javascript
Team: web-team
DSN: https://abc123@sentry.io/123456

Open in browser:

Terminal window
sentry project view frontend -w