sentry

Automate error tracking and issue lifecycle management via the Sentry API.

76|18|Updated Dec 12, 2025
One-click install
npx skills add https://github.com/vm0-ai/vm0-skills --skill sentry
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry
Source: https://github.com/vm0-ai/vm0-skills/tree/main/sentry
Command: npx skills add https://github.com/vm0-ai/vm0-skills --skill sentry

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides programmatic access to Sentry for error tracking, issues, releases, and events.

Core Features & Use Cases

  • List/search issues and view details
  • Resolve/ignore issues and manage releases
  • View events and track errors across projects

Quick Start

bash -c 'curl -s "https://{SENTRY_HOST}/api/0/projects/" --header "Authorization: Bearer ${SENTRY_TOKEN}"' | jq .

Frequently Asked Questions about sentry

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

FAQPage Schema
How do I automate error tracking and issue management with Sentry's API?

Automate error tracking by making authenticated API calls to Sentry's endpoints using curl with a Bearer token. You can list issues, search errors, resolve or ignore issues, and track releases across projects and organizations programmatically.

Can I list and search Sentry issues across multiple projects?

Yes, Sentry's API supports listing and searching issues across multiple projects and organizations. Use authenticated curl requests to query issues with filters, then parse the JSON response to extract issue details, event data, and release information.

What authentication do I need to access the Sentry API?

Sentry API requires Bearer token authentication via the Authorization header. Generate an API token in your Sentry organization settings, then include it in curl requests as `--header "Authorization: Bearer ${SENTRY_TOKEN}"`.

How do I resolve or ignore issues in Sentry programmatically?

Use Sentry's API to update issue status by sending authenticated requests to project endpoints. You can resolve, ignore, or manage the lifecycle of issues and track associated events and releases through API calls.

Can I track releases and events through the Sentry API?

Yes, Sentry's API provides endpoints to view and manage releases and events. Query release data and associated events across projects to monitor error patterns, then parse the structured JSON responses for analysis and reporting.