App Crashes
Retrieves crash reports for a specific app over a defined period.
- Method: GET
- Endpoint:
{{base_url}}/performance/app-crashes
Name
Type
Description
app_idRequiredstring
The app ID you want to query.
app_versionRequiredstring
The app version you want to query. Use All Versions to retrieve all the versions.
days_backRequiredstring
The timeframe for which the statistics are fetched.
Allowed values:
Last 30 Days, Last 90 Days, Last 180 Days, Last 365 DaysName
In
Type
Description
x-api-tokenheader
N/A
200
App Crashes
| Field | Type |
|---|---|
rows.total_crashes | integer |
rows.distinct_crashes | integer |
rows.app_id | string |
rows.updated_at | string |
rows.application_name | string |
rows.crash_date | string |
rows.app_version | string |
columns.friendly_name | string |
columns.type | string |
columns.name | string |
- ApiKeyAuth
Request
{{base_url}}/performance/app-crashes?app_id=%7Bapp_id%7D&app_version=%7Bapp_version%7D&days_back=Last%2030%20DaysResponse
{
"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"
}
]
}