Skip to main content

App Crashes

Retrieves crash reports for a specific app over a defined period.

Request
  • Method: GET
  • Endpoint: {{base_url}}/performance/app-crashes
Query parameters
Name
Type
Description
app_idRequired
string

The app ID you want to query.

app_versionRequired
string

The app version you want to query. Use All Versions to retrieve all the versions.

days_backRequired
string

The timeframe for which the statistics are fetched.

Allowed values: Last 30 Days, Last 90 Days, Last 180 Days, Last 365 Days
Additional parameters
Name
In
Type
Description
x-api-token
header
N/A
Response
200

App Crashes

FieldType
rows.total_crashesinteger
rows.distinct_crashesinteger
rows.app_idstring
rows.updated_atstring
rows.application_namestring
rows.crash_datestring
rows.app_versionstring
columns.friendly_namestring
columns.typestring
columns.namestring
Security
  • ApiKeyAuth
Request
{{base_url}}/performance/app-crashes?app_id=%7Bapp_id%7D&app_version=%7Bapp_version%7D&days_back=Last%2030%20Days
Response
{
  "rows": [
    {
      "total_crashes": "integer",
      "distinct_crashes": "integer",
      "app_id": "string",
      "updated_at": "style",
      "application_name": "string",
      "crash_date": "date",
      "app_version": "string"
    }
  ],
  "columns": [
    {
      "friendly_name": "string",
      "type": "string",
      "name": "string"
    }
  ]
}