githubEdit

Deprecated

List of Deprecated API endpoints that are scheduled for removal

Crash History

GET https://app.bugsplat.com/api/crashHistory

Returns chartable report ingestion data for the specified database, appNames, appVersions, startDate, and endDate. This endpoint shows report ingestion, rejection, and ignored (retired) stats for subscription purposes. Reports are logged as they are ingested and may have occurred on different dates (e.g. sent at next launch). For accurate accounting of reports by date please use the Crashes endpoint or webhook.

circle-info

Deprecation Note

This endpoint is deprecated and may be removed in the future. Use the Dashboard endpoint moving forward

Query Parameters

Name
Type
Description

database

string

BugSplat database containing crash history

appVersions

array

Comma-separated list of versions to query

appNames

array

Comma-separated list of applications to query

startDate

string

ISO 8601 timestamp representing the start date of the specified time period

endDate

string

ISO 8601 timestamp representing the end date of the specified time period

timezone

string

UTC offset (e.g. +05:30, -07:00). Shifts daily buckets to local day boundaries. Defaults to +00:00

{
    "TotalRows": 1,
    "TotalCrashes": 20,
    "StartDay": 738387,
    "EndDay": 738388,
    "Rows": [
        {
            "appName": "All",
            "series": [
                {
                    "day": 738387,
                    "timestamp": 1629417600,
                    "totalCrashCount": 20
                },
                {
                    "day": 738388,
                    "timestamp": 1629504000,
                    "totalCrashCount": 0
                }
            ]
        }
    ]
D}

Curl Example

Stack Key Daily Volume

GET https://app.bugsplat.com/api/stackKeyDailyVolume

Returns chartable volumes for a given database and a comma-separated list of stackKeyIds.

Query Parameters

Name
Type
Description

database

string

BugSplat database containing a list of stackKeyIds

stackKeyIds[]

array

Comma-separated list of stackKeyIds to query

appNames

array

Comma-separated list of applications to query

versions

array

Comma-separated list of versions to query

startDate

date

ISO 8601 timestamp representing the start date of the specified time period

endDate

date

ISO 8601 timestamp representing the end date of the specified time period

timezone

string

UTC offset (e.g. +05:30, -07:00). Shifts daily and hourly buckets to local time boundaries. Defaults to +00:00

Curl Example

Last updated

Was this helpful?