Fetch an app's error detail instances plot
/apps/{id}/errorGroups/{errorGroupId}/plots/instancesFetch an app's error detail instances 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 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.
uuidError group fingerprint.
Query Parameters
Start time boundary for temporal filtering. ISO8601 Datetime string. If not passed, a default value is assumed.
End time boundary for temporal filtering. ISO8601 Datetime string. If not passed, a default value is assumed.
Client timezone for time bucket alignment. Example: Asia/Kolkata.
Time bucket granularity. Accepted values: minutes, hours, days, months. Defaults to days.
List of comma separated version identifier strings.
List of comma separated version codes.
Comma-separated list of error source types to include. Accepted values: any combination of error, anr. When omitted, all sources are returned.
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.
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).
Code representing combination of filters.
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/string/plots/instances?timezone=string"[ { "id": "1.0.0 (100)", "data": [ { "datetime": "2025-06-13", "instances": 5 } ] }, { "id": "0.9.5 (95)", "data": [ { "datetime": "2025-06-13", "instances": 2 } ] }]Think this page can be better?
Open an issue