Crashsight OpenAPI
  1. Crash/Exception Analysis
Crashsight OpenAPI
  • API Reference
    • Introduction
    • Overview Statistics
      • Get hourly top issue list
      • Get trend data for the last N days
      • Get overview of data analysis for a single day, including crash, ANR and error
      • Get cumulative trend data
      • Get top issue list
      • Get hourly trend data
    • Crash/Exception Analysis
      • To set issue-level tags.
        POST
      • Get device list based on stack keyword
        POST
      • Get crash user list within a specific time period
        POST
      • Get crash statistics based on stack keyword
        POST
      • Get crash Stat based on device ID
        POST
      • Get crashHash list based on issue ID
        POST
      • Get OpenId base on device ID
        POST
      • Get notes based on issue ID
        GET
      • Get issue details
        GET
      • Get the most recent crash hash based on issue ID
        GET
      • Get the list of crash hashes based on an issue ID
        POST
      • Get the trace data, trace logs, additional information, and custom key-value pairs
        GET
      • Get crash details
        GET
      • Get Issue list
        POST
    • Others
      • Get the list of versions, bundle, and handlers
      • Get the crash details based on OpenID
  1. Crash/Exception Analysis

Get Issue list

POST
{{env}}/uniform/openapi/queryIssueList{{signature}}
Get Issue list
China Website: https://crashsight.qq.com
Overseas website: https://crashsight.wetest.net
download python code example:https://crashsight-docs-1258344700.cos.ap-shanghai.myqcloud.com/global/crashsight_openapi_v1_queryIssueList.py

Request

Header Params
Content-Type
string 
required
Example:
application/json
Accept-Encoding
string 
required
Example:
*
Body Params application/json
appId
string 
required
Project ID
platformId
integer 
required
Platform ID Android:1,IOS:2,PC:10
rows
integer 
required
Row limit, how many rows to get
exceptionTypeList
string 
required
The array of exception types, separated by commas, with supported exception types: Crash, Native, AllCatched, ANR, Unity3D, AllCrash, ExtensionCrash, Lua, JS.
sortOrder
string 
required
The sorting order.For example: "desc" for descending order "asc" for ascending order
status
string 
required
The optional parameter to filter by issue handling status. 0: Not Processed, 1: Processed, 2: In Progress, with multiple options supported.
sortField
string 
required
sorting field
date
string 
required
The parameter to filter by the latest time period for issues.
Example
{
  "appId": "string",
  "platformId": 0,
  "rows": 0,
  "exceptionTypeList": "string",
  "sortOrder": "string",
  "status": "string",
  "sortField": "string",
  "date": "string"
}

Responses

🟢200成功
application/json
Body
status
integer 
required
ret
object 
required
appId
string 
required
Project ID
platformId
string 
required
Platform ID
issueList
array [object {14}] 
required
Issue List
numFound
integer 
required
Total crash count
Example
{
  "status": 200,
  "ret": {
    "appId": "a81f9c7e38",
    "platformId": "1",
    "issueList": [
      {
        "crashNum": 1184,
        "exceptionName": "java.lang.RuntimeException",
        "exceptionMessage": "sNSXTvFGp6ZGrorljP6WPxsGtKc5px",
        "keyStack": "",
        "lastestUploadTime": "2021-04-09 20:21:25 663",
        "issueId": "4273DBD3409C2783706F3F15E140F25A",
        "imeiCount": 596,
        "processor": "",
        "status": 0,
        "tagInfoList": [],
        "count": 1184,
        "version": "#$cv#$",
        "ftName": "",
        "issueVersions": [
          {
            "version": "3.2.5",
            "firstUploadTime": null,
            "firstUploadTimestamp": 0,
            "lastUploadTime": null,
            "lastUploadTimestamp": 0,
            "count": 0,
            "deviceCount": 0
          }
        ]
      }
    ],
    "numFound": 1
  }
}
Previous
Get crash details
Next
Get the list of versions, bundle, and handlers
Built with