githubEdit

Crashes

API Documentation for the BugSplat Crashes Endpoint

circle-info

This endpoint supports paging, filtering, and grouping queries. For more information on paging, filtering, and grouping, please visit this link.

Get Crashes

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

Get a list of crashes for a database. This query supports paging, filtering, and grouping. All of the property keys in the Rows object can be used as column values for filtering and grouping, e.g., id, stackKey, appName, ipAddress, etc.

Query Parameters

Name
Type
Description

database

string

BugSplat database containing crash data

{
  "database": "Fred",
  "pageData": {
    "defectTracker": true,
    "defectTrackerType": "GitHub"
  },
  "rows": [
    {
      "id": "140612",
      "status": "0",
      "stackId": "19187",
      "stackKey": "myConsoleCrasher+0x12b5",
      "stackKeyId": "9579",
      "appName": "myConsoleCrasher",
      "appVersion": "1.048",
      "appDescription": "appKey",
      "userDescription": "A default user description",
      "user": "TestUser",
      "email": "[email protected]",
      "IpAddress": "34.225.87.xxxx",
      "crashTime": "2025-10-30T20:52:24Z",
      "defectId": null,
      "defectUrl": "",
      "defectLabel": "",
      "skDefectId": null,
      "skDefectUrl": "",
      "skDefectLabel": "",
      "Comments": "",
      "skComments": "",
      "crashTypeId": "1",
      "exceptionCode": "c0000005",
      "exceptionMessage": "Access violation",
      "attributes": "{}",
      "lineNumber": null,
      "groupByCount": null
    }
  ]
}

Curl Example

Delete Crashes

DELETE https://app.bugsplat.com/api/crashes.php

Delete one or more crashes by ID. The maximum batch size per call is 50.

Query Parameters

Name
Type
Description

database

string

BugSplat database containing crash data

ids

string

Comma-separated list of crash IDs

Curl Example

Last updated

Was this helpful?