Measure logo
REST API ReferenceDashboard APIAlerts

Fetch an app's alerts

GET/apps/{id}/alerts

Fetch an app's alerts by applying various optional filters.

Pass limit and offset values to paginate results.

Authorization

bearerAuth
AuthorizationBearer <token>

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

id*string

App's UUID.

Formatuuid

Query Parameters

from?string

ISO8601 timestamp to include alerts after this time.

to?string

ISO8601 timestamp to include alerts before this time.

offset?integer

Number of items to skip when paginating. Use with limit parameter to control amount of items fetched.

limit?integer

Number of items to return. Used for pagination. Should be used along with offset.

filter_short_code?string

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": "ANRs are spiking at 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": "Crashes are spiking at 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"    }  ]}
Empty
Empty
Empty
Empty
Empty

Think this page can be better?

Open an issue