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

To set issue-level tags.

POST
{{env}}/uniform/openapi/addTag{{signature}}
To set issue-level tags.
China Website: https://crashsight.qq.com
Overseas website: https://crashsight.wetest.net

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
issueId
string 
required
Issue ID
tagName
string 
required
Issue tags
Example
{
    "appId": "string",
    "platformId": 0,
    "issueId": "string",
    "tagName": "string"
}

Responses

🟢200成功
application/json
Body
status
integer 
required
Response status.
ret
object 
required
Query results.
statusCode
integer 
required
query status code
message
string 
required
error details
tagInfoList
object 
required
error details
Example
{
    "status": 200,
    "ret": {
        "statusCode": 0,
        "message": null,
        "tagInfoList": [
            {
                "tagId": 6807,
                "tagName": "1111"
            }
        ]
    }
}
Previous
Get hourly trend data
Next
Get device list based on stack keyword
Built with