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 hourly trend data
      • 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
      • Get Advanced Trends(Private test)
        POST
    • Others
      • Get the list of versions, bundle, and handlers
      • Get the crash details based on OpenID
  • Post upload symbol
    POST
  1. Crash/Exception Analysis

Get Advanced Trends(Private test)

POST
{{env}}/uniform/openapi/queryAdvancedTrend
Get advanced trends(Private test)
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_queryAdvancedTrend.py

Request

Header Params
Content-Type
string 
required
Example:
application/json
Accept-Encoding
string 
required
Example:
*
Body Params application/json
appId
string 
required
searchConditionGroup
object 
required
conditions
array [object {1}] 
optional
minDatetime
string <date-time>
required
maxDatetime
string <date-time>
required
granularityUnit
string 
required
Example
{
    "appId": "xxx",
    "searchConditionGroup": {
        "conditions": [
            {
                "field": "version"
            }
        ]
    },
    "minDatetime": "2024-07-24T00:00:00Z",
    "maxDatetime": "2024-07-30T23:59:59Z",
    "granularityUnit": "DAY"
}

Responses

🟢200Successful response
application/json
Body
data
object 
required
trendList
array [object {9}] 
required
status
integer 
required
ret
integer 
required
message
string 
required
errorCode
string 
required
Example
{
    "status": 200,
    "ret": 200,
    "data": {
        "trendList": [
            {
                "date": "2024-07-24 00:00:00",
                "crashNum": 1111,
                "crashUser": 1111,
                "anrNum": 0,
                "anrUser": 0,
                "errorNum": 0,
                "errorUser": 0,
                "accessNum": 1111,
                "accessUser": 1111
            }
        ]
    },
    "message": "OK",
    "errorCode": ""
}
Previous
Get Issue list
Next
Get the list of versions, bundle, and handlers
Built with