Fetch an app's alerts
/apps/{id}/alertsFetch an app's alerts by applying various optional filters.
Pass limit and offset values to paginate results.
Authorization
bearerAuth User access token issued at sign-in. Sent as
Authorization: Bearer <access-token> unless cookies are used to send
tokens. The /auth/refresh and /auth/signout endpoints expect the
session's refresh token in the same header format instead.
In: header
Path Parameters
App's UUID.
uuidQuery Parameters
ISO 8601 UTC string in milliseconds precision. Example: 2023-11-01T18:30:00.000Z. Omitting both from and to returns the last seven days.
ISO 8601 UTC string in milliseconds precision. Example: 2023-11-01T18:30:00.000Z. Omitting both from and to returns the last seven days.
Number of items to skip when paginating. Use with limit parameter to control amount of items fetched.
Number of items to return. Used for pagination. Should be used along with offset.
Code representing combination of filters.
Response Body
application/json
curl -X GET "https://example.com/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/alerts"{ "meta": { "next": true, "previous": false }, "results": [ { "id": "83e9d75c-b3df-432f-af80-ac6f60a9a36e", "team_id": "29f0f5b2-f03f-4dbe-bd18-acf163b91965", "app_id": "19e26d60-2ad8-4ef7-8aab-333e1f5377fc", "entity_id": "09ef78940bd258030ebe3937bf1e32a2", "type": "anr_spike", "message": "CpuUsageCollector: run() - Application Not Responding for at least 5s", "url": "http://localhost:3000/29f0f5b2-f03f-4dbe-bd18-acf163b91965/anrs/19e26d60-2ad8-4ef7-8aab-333e1f5377fc/09ef78940bd258030ebe3937bf1e32a2/sh.measure.android.anr.AnrError@CpuUsageCollector", "created_at": "2025-07-10T11:35:48.069383Z", "updated_at": "2025-07-10T11:35:48.069383Z" }, { "id": "865363ff-f960-492d-8a67-a134f242d290", "team_id": "29f0f5b2-f03f-4dbe-bd18-acf163b91965", "app_id": "19e26d60-2ad8-4ef7-8aab-333e1f5377fc", "entity_id": "f94859bc4b47fbf05b4eec2a300de0a4", "type": "crash_spike", "message": "ExceptionDemoActivity: onClick() - This is a nested custom exception", "url": "http://localhost:3000/29f0f5b2-f03f-4dbe-bd18-acf163b91965/crashes/19e26d60-2ad8-4ef7-8aab-333e1f5377fc/f94859bc4b47fbf05b4eec2a300de0a4/sh.measure.sample.CustomException@ExceptionDemoActivity", "created_at": "2025-07-10T11:35:48.057192Z", "updated_at": "2025-07-10T11:35:48.057192Z" } ]}Think this page can be better?
Open an issue