# Sentry API **Provider:** Sentry **Category:** developer **Base URL:** `https://sentry.io/api/0` **Auth:** bearer — `Authorization: Bearer sntrys_...` **Rate Limit:** 100 requests/second **Free Tier:** Yes — [object Object] **Pricing:** Free tier available (freemium) **Docs:** https://docs.sentry.io/api/ ## Description The Sentry API provides programmatic access to error tracking and performance monitoring data. Retrieve issues with filtering, create and list releases (tied to deployments), manage projects and teams, query performance transactions, set up alerts, and export raw event data. Useful for custom dashboards, CI/CD release hooks, and SLA monitoring integrations. ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://sentry.io/api/0/organizations/{org}/issues/` | List error issues with advanced filtering | | GET | `https://sentry.io/api/0/organizations/{org}/releases/` | List releases and their health metrics | | POST | `https://sentry.io/api/0/organizations/{org}/releases/` | Create a new release (for deploy tracking) | | GET | `https://sentry.io/api/0/projects/{org}/{project}/events/` | List raw error events for a project | | GET | `https://sentry.io/api/0/organizations/{org}/projects/` | List all projects in the organization | | PUT | `https://sentry.io/api/0/organizations/{org}/issues/{id}/` | Update issue status (resolve, ignore, merge) | ## Authentication Create an Auth Token in Sentry Settings → Developer Settings → Auth Tokens. Pass it as a Bearer token in the Authorization header. ``` Authorization: Bearer sntrys_... ``` ## Sample Request ```bash curl "https://sentry.io/api/0/organizations/my-org/issues/?query=is:unresolved&limit=5" \ -H "Authorization: Bearer $SENTRY_AUTH_TOKEN" ``` ## Sample Response ```json { "id": "123456", "title": "TypeError: Cannot read properties of undefined", "culprit": "src/auth/login.ts in handleLogin", "status": "unresolved", "times_seen": 247, "first_seen": "2024-02-01T09:00:00Z", "last_seen": "2024-03-15T14:22:00Z", "level": "error" } ``` ## Pricing Details Free: 5k errors/mo. Team: $26/mo (50k errors). Business: $80/mo (90k errors). Enterprise: custom. Self-hosted: free (open source). --- *Source: [API Map](https://apimap.dev/apis/sentry/) — CC BY 4.0*