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.
https://sentry.io/api/0
Auth type
Bearer Token
Auth header
Authorization: Bearer sntrys_...
Rate limit
100 requests/second
Pricing
Free tier available
Free quota
10k performance units
Documentation
https://docs.sentry.io/api/
Endpoint status
Unreachable — No response — server may be down or blocking automated probes
(checked Mar 29, 2026)
Builder score
C
59%
builder-friendly
Create an Auth Token in Sentry Settings → Developer Settings → Auth Tokens. Pass it as a Bearer token in the Authorization header.
Authorization: Bearer sntrys_...
| Plan | Price/mo | Included |
|---|---|---|
| Free | Free | 5k errors/mo, 10k perf units |
| Team | $26 | 50k errors/mo, replays, cron |
| Business | $80 | 90k errors/mo, advanced features |
| Enterprise | $0 | Custom + self-hosted option (free) |
Free: 5k errors/mo. Team: $26/mo (50k errors). Business: $80/mo (90k errors). Enterprise: custom. Self-hosted: free (open source).
| Method | Path | Description |
|---|---|---|
| GET | /organizations/{org}/issues/ |
List error issues with advanced filtering |
| GET | /organizations/{org}/releases/ |
List releases and their health metrics |
| POST | /organizations/{org}/releases/ |
Create a new release (for deploy tracking) |
| GET | /projects/{org}/{project}/events/ |
List raw error events for a project |
| GET | /organizations/{org}/projects/ |
List all projects in the organization |
| PUT | /organizations/{org}/issues/{id}/ |
Update issue status (resolve, ignore, merge) |
curl "https://sentry.io/api/0/organizations/my-org/issues/?query=is:unresolved&limit=5" \ -H "Authorization: Bearer $SENTRY_AUTH_TOKEN"
{
"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"
}
Data sourced from API Map. Always verify pricing and rate limits against the official Sentry documentation.