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 the list of crash hashes based on an issue ID

POST
{{env}}/uniform/openapi/crashList{{signature}}
To get a list of crash hashes based on an issue,
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_crashList.py

Request

Header Params
Content-Type
string 
required
Example:
application/json
Accept-Encoding
string 
required
Example:
*
Body Params application/json
appId
string 
required
crashDataType
string 
required
start
integer 
required
searchType
string 
required
exceptionTypeList
string 
required
platformId
integer 
required
issueId
string 
required
rows
integer 
required
version
string 
required
Example
{
  "appId": "7786d1a114",
  "crashDataType": "undefined",
  "start": 0,
  "searchType": "detail",
  "exceptionTypeList": "",
  "platformId": 1,
  "issueId": "F3B213561B26E0C45A6C397CD77668D9",
  "rows": 10,
  "version": ""
}

Responses

🟢200成功
application/json
Body
status
integer 
required
ret
object 
required
statusCode
integer 
required
message
null 
required
reqSendstamp
integer 
required
Private field
rspReceivedTiamp
integer 
required
Private field
rspSendTimestamp
integer 
required
Private field
numFound
integer 
required
issueList
array[string]
required
crashIdList
array[string]
required
crashDatas
object 
required
detailDatas
null 
required
tagInfoList
null 
required
tagList
null 
required
crashNums
integer 
required
anrNums
integer 
required
errorNums
integer 
required
scrollId
null 
required
Example
{
  "status": 200,
  "ret": {
    "statusCode": 0,
    "message": null,
    "reqSendstamp": 0,
    "rspReceivedTiamp": 0,
    "rspSendTimestamp": 0,
    "numFound": 1,
    "issueList": [],
    "crashIdList": [
      "337A2BABD0DBA145C462625FD26BD349"
    ],
    "crashDatas": {
      "337A2BABD0DBA145C462625FD26BD349": {
        "productVersion": "1297633",
        "dumpId": "A9179A653872743CD2A11891B9120",
        "model": "2c-f0-5d-15-4b-c3",
        "id": "337A2BABD0DBA145C462625FD26BD349",
        "uploadTime": "2021-06-17 12:53:22",
        "crashId": "337A2BABD0DBA145C462625FD26BD349",
        "osVer": "Microsoft Windows 10-sp0.0",
        "deviceId": "[secret_info]",
        "userId": "[secret_info]"
      }
    },
    "detailDatas": null,
    "tagInfoList": null,
    "tagList": null,
    "crashNums": 0,
    "anrNums": 0,
    "errorNums": 0,
    "scrollId": null
  }
}
Previous
Get the most recent crash hash based on issue ID
Next
Get the trace data, trace logs, additional information, and custom key-value pairs
Built with