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

Get overview of data analysis for a single day, including crash, ANR and error

GET
{{env}}/uniform/openapi/getRealTimeAppendStat{{signature}}
To get the anomaly overview data for a single day, including crash, ANR and error
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_getRealTimeAppendStat.py

Request

Query Params
appId
string 
required
Project ID
platformId
string 
required
Platform ID Android:1,IOS:2,PC:10
startHour
string 
required
The format for the date should be YYYYMMDDHH, with the hour part being 00 only.
endHour
string 
required
The format for the date should be YYYYMMDDHH, and it must be the same day as startHour.
type
string 
required
All error types including crash, error, error. The field can be assigned a default value:all.
Example:
ALL
fsn
string 
required
RequestID. The fsn value can be fixed
Header Params
Accept-Encoding
string 
required
Example:
*
Content-Type
string 
required
Example:
application/json
Body Params application/json
object {0}
Example
{}

Responses

🟢200成功
application/json
Body
status
integer 
required
ret
object 
required
code
integer 
required
message
string 
required
data
array [object {18}] 
required
Example
{
  "status": 200,
  "ret": {
    "code": 200,
    "message": "OK",
    "data": [
      {
        "appId": "a48e55df8b",
        "platformId": 2,
        "version": "-1",
        "date": "2021040818",
        "type": "",
        "accessNum": 1255365,
        "accessUser": 832770,
        "crashNum": 1164,
        "crashUser": 566,
        "anrNum": 0,
        "anrUser": 0,
        "errorNum": 67962,
        "errorUser": 33322,
        "vmCrashNum": 0,
        "vmCrashUser": 0,
        "vmAnrNum": 0,
        "vmAnrUser": 0,
        "vmErrorNum": 0,
        "vmErrorUser": 0
      }
    ]
  }
}
Previous
Get trend data for the last N days
Next
Get cumulative trend data
Built with