Search & filtering
Once you've got more than a handful of issues, the search bar and filters above the issue list help you find the one you care about. Everything runs server-side, so search reaches your whole history — not just the first page.
Text search
The search box matches, case-insensitively, across an issue's title, culprit, and exception type and value. Search TypeError to find every type error, or paste a filename or function name from a stack trace to jump to the issue it belongs to.
Filters
Filters combine with each other and with the search text (all AND-ed together):
| Filter | Values |
|---|---|
| Environment | Drawn from the environments actually present in the project's issues. |
| Release | Any release the project has seen — shows issues that appeared in it. |
| Level | error, warning, or info. |
| Status | unresolved, resolved, ignored, or silenced (by effective status — an expired silence counts as unresolved). |
Sort & paging
Sort the list by:
- Last seen — most recent activity first (the default).
- First seen — newest issues first.
- Most frequent — highest event count first.
Results page through your full history, so a search isn't capped to the most recent issues.
Shareable URLs
Active search and filters are written to the page URL, so a filtered view is shareable and bookmarkable — drop a link to "unresolved TypeErrors in production on v2.1" into a chat and it opens exactly that.
GET /api/projects/:id/issues?q=&environment=&release=&level=&status=&sort=&cursor=. All parameters are optional and the endpoint is scoped to your own projects.