Sentry
SandBaseapi
Published June 21, 2026
About
Access the Sentry REST API. Query issues, events, projects, and releases for error monitoring — powered by Nango Connector Gateway.
Documentation
Sentry Connector
Access the Sentry REST API. Query issues, events, projects, and releases for error monitoring.
Pricing
| Operation | Price |
|---|---|
| Successful API call (2xx) | $0.001 |
| Failed call (4xx/5xx) | Free |
Quick Test (curl)
# List your projects
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "sentry", "endpoint": "/api/0/projects/", "method": "GET"}'
# List org issues
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "sentry", "endpoint": "/api/0/organizations/my-org/issues/", "method": "GET"}'
# List releases
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "sentry", "endpoint": "/api/0/organizations/my-org/releases/", "method": "GET"}'
Request Format
POST /v1/run
{
"model": "sentry",
"endpoint": "/api/0/projects/",
"method": "GET",
"params": {},
"headers": {},
"body": {},
"retries": 0
}
Common Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/0/projects/ | List projects |
| GET | /api/0/organizations/{org}/issues/ | List issues |
| GET | /api/0/organizations/{org}/releases/ | List releases |
| GET | /api/0/projects/{org}/{project}/events/ | List events |
📖 Full API reference: Sentry API Docs
Technical Specs
| Spec | Value |
|---|---|
| Auth | API Key (Nango-managed) |
| Proxy | Nango (auto token refresh) |
| Execution | Sync |
| Rate limit | Inherits Sentry's API limits |
Try Sentry
Test this model in the Sandbase Playground with your own prompts.
Open in Playground