Measure logo
REST API ReferenceDashboard APIErrors

Fetch an app's error overview instances plot

GET/apps/{id}/errorGroups/plots/instances

Fetch an app's error overview instances plot aggregated by date range & version.

Both versions & version_codes should be present if any one of them is present. Both from and to MUST be present when specifying a date range.

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

Start time boundary for temporal filtering. ISO8601 Datetime string. If not passed, a default value is assumed.

to?string

End time boundary for temporal filtering. ISO8601 Datetime string. If not passed, a default value is assumed.

timezone*string

Client timezone for time bucket alignment. Example: Asia/Kolkata.

plot_time_group?string

Time bucket granularity. Accepted values: minutes, hours, days, months. Defaults to days.

versions?string

List of comma separated version identifier strings.

version_codes?string

List of comma separated version codes.

type?string

Comma-separated list of error source types to include. Accepted values: any combination of error, anr. When omitted, all sources are returned.

severity?string

Comma-separated list of severity levels to filter by. Accepted values: any combination of fatal, unhandled, handled. Applies only to exception events (type=error); ANRs are unaffected.

custom?string

true to restrict exception results to custom-tracked only. ANRs are unaffected by this flag; they are included whenever their source is in scope (type is omitted or includes anr).

filter_short_code?string

Code representing combination of filters.

ud_expression?string

Expression in JSON to filter using user defined attributes.

Response Body

application/json

curl -X GET "https://example.com/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/errorGroups/plots/instances?timezone=string"
[  {    "id": "1.0.0 (100)",    "data": [      {        "datetime": "2025-06-13",        "instances": 23,        "error_free_sessions": 0.95      }    ]  },  {    "id": "0.9.5 (95)",    "data": [      {        "datetime": "2025-06-13",        "instances": 8,        "error_free_sessions": 0.98      }    ]  }]
Empty
Empty
Empty
Empty
Empty

Think this page can be better?

Open an issue