sentry

Fetch Sentry issues, events, releases, and metadata via the REST API.

8|1|Updated Apr 21, 2026
One-click install
npx skills add https://github.com/mnlt/teleport --skill sentry-mnlt
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: sentry
Source: https://github.com/mnlt/teleport/tree/main/skills/sentry
Command: npx skills add https://github.com/mnlt/teleport --skill sentry-mnlt

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables programmatic access to Sentry data (issues, events, releases, and org/project metadata) via REST API to streamline error diagnosis and release auditing.

Core Features & Use Cases

  • List unresolved issues, fetch issue details and events (including stack traces), and inspect releases and deployments.
  • Retrieve org/project metadata and member activity to aid debugging and post-incident reviews.
  • Use when you need structured, machine-readable data from Sentry instead of UI screenshots or manual search.

Quick Start

Fetch the latest unresolved issues for your Sentry organization and project.

Frequently Asked Questions about sentry

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch Sentry issues and stack traces via the REST API?▼

Fetch Sentry issues and stack traces via the REST API by querying the issues and events endpoints with a valid authentication token. This provides structured, machine-readable data for diagnosing production errors instead of manual UI searches.

What authentication is required to query Sentry data programmatically?▼

Querying Sentry data programmatically requires a valid SENTRY_AUTH_TOKEN with appropriate scopes. The token is passed in the Authorization header to authenticate requests against the base URL https://sentry.io/api/0.

Can I retrieve Sentry releases and deployment metadata outside the web UI?▼

Retrieve Sentry releases and deployment metadata outside the web UI by querying the REST API. This enables automated release auditing and post-incident reviews across organizations and projects using structured data.

Does the Sentry REST API work with self-hosted instances?▼

The Sentry REST API works with self-hosted instances by applying the self-hosted variant base URL. You still need a valid SENTRY_AUTH_TOKEN with appropriate scopes to authenticate requests and fetch organization or project data.

What is the best way to get unresolved issues for a Sentry project?▼

The best way to get unresolved issues for a Sentry project is querying the REST API issues endpoint. This returns structured, machine-readable data for production errors, pulling stack traces and event details for debugging.