API Docs
/
No Results Found
Crashes

Crashes

This comprehensive crash analytics suite covers all aspects of crash monitoring. Get Crash List retrieves detailed crash data with flexible filtering, Get Crash count by date powers trend analysis dashboards, and Get Crash count summary provides executive insights with historical comparisons. Get Crash Detail enables deep debugging with complete crash context, while Device specific crash distribution reveals hardware-specific issues. Features include multi-platform support, version filtering, date range queries, and pagination across all endpoints.

Download Crashes OpenAPI Document
End Points
Get crash list
Get crash count by date
Get crash count by date (timezone)
Get crash count summary
Get crash detail
Device specific crash distribution
OS version specific crash distribution
Affected devices
Unique crash count by date
Unique crash count by date (timezone)

Get crash list

The crash list API retrieves crash data for your application with flexible filtering and pagination options. This endpoint allows you to query crashes by date range, platform, app version, and environment mode, making it easy to analyze crash patterns and trends across different segments of your application.

By default, the API returns the first 500 production crashes across all platforms and app versions. Use the filtering parameters to narrow down results or pagination parameters to retrieve additional records.
OAuth Scope : JProxy.jmobileapi.ALL

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.
platform
string
Comma-separated list of platforms to filter crashes (iOS, Android, Windows, tvOS, watchOS, macOS). Default - all platforms. Maximum 5 values allowed.
mode
string
Environment filter. 0 for development, 1 for production. Default - 1 (production).
offset
string
Starting position for result pagination (default - 0). Increment by limit value for next page (e.g., 501, 1001).
limit
string
Number of results per page. Default and maximum: 500. Use smaller values to limit response size.

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/list?startdate=02-08-2025&enddate=24-08-2025' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": [ { "AppVersion": "1.1", "Status": 0, "UniqueMessageID": 2142098799, "AppVersionID": 2143879324, "PID": 21420988791, "ExceptionType": "native", "OS": "Android", "CrashCount": 2, "UsersCount": 1, "DevicesCount": 10, "Exception": "Stacktrace of the crash" } ], "status": "success" }

Get crash count by date

The crash count by date API provides aggregated crash statistics organized by date (in epoch format) and platform. This endpoint returns time-series data showing crash counts, issue counts, device counts, and user counts for each day within the specified date range, making it ideal for trend analysis and crash monitoring dashboards.

By default, the API returns crash count data for all app versions across all platforms within the specified date range. Users can optionally apply platform and app version filters to narrow down the results to specific segments of their application.
OAuth Scope : JProxy.jmobileapi.ALL

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.
platform
string
Comma-separated list of platforms to filter crashes (iOS, Android, Windows, tvOS, watchOS, macOS). Default - all platforms. Maximum 5 values allowed.

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/countbydate?startdate=02-08-2025&enddate=24-08-2025' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": { "android": { "crashcount": { "1755973800000": 101 }, "issuecount": { "1755973800000": 24 }, "devicecount": { "1755973800000": 11 }, "usercount": { "1755973800000": 3 } } }, "status": "success" }

Get crash count by date (timezone)

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.
platform
string
Comma-separated list of platforms to filter crashes (iOS, Android, Windows, tvOS, watchOS, macOS). Default - all platforms. Maximum 5 values allowed.
timezone
string
(Required)
Timezone for crash data aggregation.(e.g., "America/New_York", "Asia/Tokyo")
daterangekey
string
(Required)
Time granularity for crash data aggregation. Values: D (daily), H (hourly), H3 (every 3 hours), H6 (every 6 hours)

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/countbydatewithtimezone?startdate=02-08-2025&enddate=24-08-2025&timezone=Asia%2FKolkata&daterangekey=H6' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": { "android": { "crashcount": { "1755973800000": 101 }, "issuecount": { "1755973800000": 24 }, "devicecount": { "1755973800000": 11 }, "usercount": { "1755973800000": 3 } } }, "status": "success" }

Get crash count summary

The crash count summary API provides comprehensive crash statistics for a specified date range along with comparative data from the equivalent previous period. This endpoint delivers aggregated crash metrics including total crash occurrences, unique issues count, affected users, impacted devices, and app version breakdowns, making it ideal for executive dashboards and performance analysis. The API includes a precrashcount object that provides comparative data from the previous equivalent period. For example, if requesting crash summary for the last 7 days, precrashcount contains data from the 7 days immediately before that period. This enables easy calculation of growth rates, trend identification, and period-over-period performance analysis.

By default, the API returns crash summary data for all app versions across all platforms within the specified date range. Users can optionally apply platform and app version filters to focus on specific segments of their application
OAuth Scope : JProxy.jmobileapi.ALL

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.
platform
string
Comma-separated list of platforms to filter crashes (iOS, Android, Windows, tvOS, watchOS, macOS). Default - all platforms. Maximum 5 values allowed.

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/summary?startdate=02-08-2025&enddate=24-08-2025' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": { "precrashcount": { "appversioncount": 0, "userscount": 49, "issuescount": 53, "crashescount": 320, "devicescount": 67 }, "crashescount": { "appversioncount": 0, "userscount": 49, "issuescount": 53, "crashescount": 320, "devicescount": 67 }, "crashfreeusers": 93, "crashfreedevices": 83 }, "status": "success" }

Get crash detail

The crash detail API retrieves comprehensive information about a specific crash instance using its unique identifier. This endpoint provides in-depth crash data including exception details, device information, user context, and technical metadata, making it essential for debugging and root cause analysis. The API requires a unique crash identifier (uniqueid) obtained from the crash list API, along with a date range to scope the search. It returns detailed crash information including the crash date, exception type and message, stack trace, affected screen or activity, network status, device specifications, operating system version, app version details, user information, session data, and custom properties.

By default, the API searches across all app versions but can be filtered to specific versions using the appversion parameter (maximum 1 values). The response includes technical details such as the crash unique message ID, app release version, bundle name, issue count, process ID, device orientation, and timestamps for when the crash occurred.
OAuth Scope : JProxy.jmobileapi.ALL

Path Parameters

uniqueid
string
(Required)
Unique identifier of a crash, can be obtained from crash list API

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/1000002/summarywithtrace?startdate=02-08-2025&enddate=24-08-2025' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": { "date": "Aug 01, 12:02:36", "ExceptionType": "native", "Message": "Stacktrace of the crash", "Screen": "com.example.apptics.LaunchActivity", "NetworkStatus": "0", "devicecount": 40, "SessionStartTime": "1756103532557", "AppVersion": "1.1", "UserID": "xxx", "JAnalyticsVersion": "0.3.0", "IssueName": "\\t at android.os.BinderProxy.transactNative", "usercount": 1, "OSVersion": "13", "UniqueMessageID": 2142098799, "AppReleaseVersion": 10, "HappenedAt": "1756103547891", "CustomProperties": "{...}", "OS": "Android", "DeviceID": "214568", "BundleName": "com.example.apptics", "issuecount": 17, "PID": 21420988791, "Orientation": "portrait", "AppVersionID": 2143879324, "InsertTime": 1756103532557, "crashescount": 320, "BatteryStatus": 80, "Model": "Samsung A07", "Edge": "Unknown" }, "status": "success" }

Device specific crash distribution

The crash distribution by device model API provides crash statistics grouped by device model for a specific crash issue. This endpoint analyzes how a particular crash is distributed across different device types, helping identify device-specific crash patterns and hardware-related stability issues. The API requires a unique crash identifier (uniqueid) obtained from the crash list API, along with a date range to scope the analysis. It returns a breakdown showing which device models are most affected by the specific crash, including the crash count for each device model. This data is essential for identifying whether crashes are concentrated on particular devices, which can indicate hardware compatibility issues, device-specific bugs, or performance problems on certain device configurations.

By default, the API analyzes data across all app versions but can be filtered to specific versions using the appversion parameter (maximum 1 value). The response includes pagination support with configurable limit (default and maximum 500) and offset parameters for handling large datasets when many device models are affected.
OAuth Scope : JProxy.jmobileapi.ALL

Path Parameters

uniqueid
string
(Required)
Unique identifier of a crash, can be obtained from crash list API

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.
limit
string
Number of results per page. Default and maximum: 500. Use smaller values to limit response size.
offset
string
Starting position for result pagination (default - 0). Increment by limit value for next page (e.g., 501, 1001).

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/1000002/devicemodel?startdate=02-08-2025&enddate=24-08-2025' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": [ { "Model": "Samsung A07", "Count": "30" } ], "status": "success" }

OS version specific crash distribution

The OS version specific crash distribution API analyzes how a particular crash is distributed across different operating system versions. This endpoint takes a unique crash identifier and returns crash counts grouped by OS version, helping identify version-specific compatibility issues and stability patterns. The API requires a crash unique identifier and date range, with optional filtering by app versions. It returns data showing which OS versions are most affected by the specific crash, enabling teams to identify problematic OS versions, prioritize compatibility testing, and make informed decisions about minimum OS support requirements. Perfect for debugging version-specific issues and understanding crash impact across the OS ecosystem.
OAuth Scope : JProxy.jmobileapi.ALL

Path Parameters

uniqueid
string
(Required)
Unique identifier of a crash, can be obtained from crash list API

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.
limit
string
Number of results per page. Default and maximum: 500. Use smaller values to limit response size.
offset
string
Starting position for result pagination (default - 0). Increment by limit value for next page (e.g., 501, 1001).

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/1000002/osversion?startdate=02-08-2025&enddate=24-08-2025' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": [ { "OSVersion": "13", "Count": "100" } ], "status": "success" }

Affected devices

The list of affected devices API retrieves detailed information about all devices impacted by a specific crash within a given time period. This endpoint provides device-level insights for crash analysis, showing which individual devices experienced a particular crash issue along with their technical specifications and user context. The API requires a unique crash identifier and date range, returning device details including app version, user ID, device ID, device model, OS version, and crash occurrence timestamps. Optional app version filtering allows analysis of version-specific device impact. With pagination support (default 500 records), the endpoint handles crashes affecting large numbers of devices.
OAuth Scope : JProxy.jmobileapi.ALL

Path Parameters

uniqueid
string
(Required)
Unique identifier of a crash, can be obtained from crash list API

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.
limit
string
Number of results per page. Default and maximum: 500. Use smaller values to limit response size.
offset
string
Starting position for result pagination (default - 0). Increment by limit value for next page (e.g., 501, 1001).

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/1000002/affecteddevice?startdate=02-08-2025&enddate=24-08-2025' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": [ { "AppVersion": "1.1", "UserID": "xxx", "DeviceID": "214568", "Model": "Samsung A07", "OSVersion": "13", "HappenedAt": "1756103547891", "Date": 1756175011078 } ], "status": "success" }

Unique crash count by date

The unique crash count by date API provides time-series data showing the frequency of a specific crash over time. This endpoint tracks how often a particular crash occurs on a daily basis within the specified date range, enabling teams to monitor crash trends, identify spikes, and assess the effectiveness of fixes for specific issues. The API requires a unique crash identifier and date range, with optional filtering by app versions and platforms. It returns daily crash counts, unique issues, affected devices, and impacted users organized by date, allowing teams to visualize crash frequency patterns and correlate them with app releases, updates, or external factors.
OAuth Scope : JProxy.jmobileapi.ALL

Path Parameters

uniqueid
string
(Required)
Unique identifier of a crash, can be obtained from crash list API

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.
platform
string
Comma-separated list of platforms to filter crashes (iOS, Android, Windows, tvOS, watchOS, macOS). Default - all platforms. Maximum 5 values allowed.

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/1000002/countbydate?startdate=02-08-2025&enddate=24-08-2025' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": { "crashcount": { "1755973800000": 101 }, "issuecount": { "1755973800000": 24 }, "devicecount": { "1755973800000": 11 }, "usercount": { "1755973800000": 3 } }, "status": "success" }

Unique crash count by date (timezone)

The unique crash count by date (timezone) API provides timezone-aware time-series data for a specific crash, showing how frequently that particular crash occurs over time with configurable granularity. This endpoint tracks crash occurrence patterns for individual issues, enabling teams to monitor specific crash trends in localized time contexts. The API requires a unique crash identifier, date range, timezone, and time granularity settings. It returns crash counts, issue counts, device counts, and user counts organized by the specified time intervals (daily, hourly, 3-hour, or 6-hour periods) in the target timezone. Optional filtering by app versions and platforms allows focused analysis of crash patterns.
OAuth Scope : JProxy.jmobileapi.ALL

Path Parameters

uniqueid
string
(Required)
Unique identifier of a crash, can be obtained from crash list API

Query Parameters

startdate
string
(Required)
Beginning of date range for crash data retrieval, required format - dd-MM-yyyy
enddate
string
(Required)
appversion
string
Comma-separated list of app versions to filter crashes. Default - all app versions. Maximum 10 values allowed.
platform
string
Comma-separated list of platforms to filter crashes (iOS, Android, Windows, tvOS, watchOS, macOS). Default - all platforms. Maximum 5 values allowed.
timezone
string
(Required)
Timezone for crash data aggregation.(e.g., "America/New_York", "Asia/Tokyo")
daterangekey
string
(Required)
Time granularity for crash data aggregation. Values: D (daily), H (hourly), H3 (every 3 hours), H6 (every 6 hours)

Request Example

Click to copy
curl --request POST \ --url 'https://apptics.zoho.com/cx/api/v1/crash/1000002/countbydatebytimezone?startdate=02-08-2025&enddate=24-08-2025&timezone=Asia%2FKolkata&daterangekey=H6' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' \ --header 'projectid: 12345689' \ --header 'zsoid: 10234695'

Response Example

{ "data": { "crashcount": { "1755973800000": 101 }, "issuecount": { "1755973800000": 24 }, "devicecount": { "1755973800000": 11 }, "usercount": { "1755973800000": 3 } }, "status": "success" }