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 most recent crash hash based on issue ID

GET
{{env}}/uniform/openapi/lastCrashInfo{{signature}}
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_lastCrashInfo.py

Request

Query Params
appId
string 
optional
Project ID
platformId
integer 
optional
Platform ID Android:1,IOS:2,PC:10
issues
string 
optional
Issue ID
crashDataType
string 
optional
Data Type. This is a fixed value.
fsn
string 
optional
request ID
Header Params
Content-Type
string 
required
Example:
application/json
Accept-Encoding
string 
required
Example:
*

Responses

🟢200成功
application/json
Body
code
integer 
required
msg
string 
required
data
object 
required
userId
null 
required
processName
string 
required
threadName
string 
required
crashId
string 
required
crashHash
string 
required
crashTime
string 
required
uploadTime
string 
required
bundleId
string 
required
productVersion
string 
required
startTime
string 
required
appInBack
string 
required
hardware
string 
required
modelOriginalName
string 
required
osVersion
string 
required
rom
string 
required
cpuName
string 
required
cpuType
string 
required
type
string 
required
callStack
string 
required
retraceCrashDetail
string 
required
gpuName
null 
required
dumpId
null 
required
new_dumpid
null 
required
mac
null 
required
launchTime
integer 
required
Example
{
  "code": 100000,
  "msg": "成功",
  "data": {
    "userId": null,
    "processName": "com.tencent.bugly.demo.buglyqq",
    "threadName": "Thread-221(221)",
    "crashId": "A2844950BA6B2A2D9F42EBC2F1F64E77",
    "crashHash": "A2:84:49:50:BA:6B:2A:2D:9F:42:EB:C2:F1:F6:4E:77",
    "crashTime": "2020-05-07 18:36:48",
    "uploadTime": "2021-06-11 13:20:12",
    "bundleId": "com.tencent.bugly.demo.buglyqq",
    "productVersion": "1.0.3",
    "startTime": "1588837884696",
    "appInBack": "false",
    "hardware": "魅族 M6",
    "modelOriginalName": "魅族 M6",
    "osVersion": "Android 4.4.2,level 20",
    "rom": "fail%2Ffail",
    "cpuName": "fail",
    "cpuType": "i686",
    "type": "100",
    "callStack": "2020507Test4",
    "retraceCrashDetail": "2020507Test4",
    "gpuName": null,
    "dumpId": null,
    "new_dumpid": null,
    "mac": null,
    "launchTime": 9924
  }
}
Previous
Get issue details
Next
Get the list of crash hashes based on an issue ID
Built with