Crashsight OpenAPI
  1. Others
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.
      • 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
      • Get the crash details based on OpenID
        POST
  1. Others

Get the crash details based on OpenID

POST
{{env}}/uniform/openapi/getCrashUserInfo{{signature}}
Get the crash details based on OpenID
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_getCrashUserInfo.py

Request

Header Params
Content-Type
string 
required
Example:
application/json
Accept-Encoding
string 
required
Example:
*
Body Params application/json
requestid
string 
required
Request ID
stime
string 
required
Start Time
etime
string 
required
End Time
type
string 
required
Return Format
appId
string 
required
Project ID
filters
object 
required
Filter conditions
user
array[string]
required
user list
limit
integer 
required
number of returns
Example
{
  "requestid": "4f395abb53e82a1e1f57c7c86feb4cc4",
  "stime": "2021-12-26 00:00:00",
  "etime": "2021-12-27 00:00:00",
  "appId": "xxx",
  "type": "pretty",
  "filters": {
    "user": [
      "597862998",
      "osewR0lNantT5rywYITNayOep-wA"
    ]
  },
  "limit": 10
}

Responses

🟢200成功
application/json
Body
requestid
string 
required
Request ID
code
integer 
required
Status Codes
errmsg
string 
required
Status Codes
data
object 
required
query results
columns
string 
required
fields
values
string 
required
values
results
array [object {4}] 
required
details
cost
integer 
required
query duration
Example
{
  "requestid": "4f395abb53e82a1e1f57c7c86feb4cc4",
  "code": 200,
  "errmsg": null,
  "data": {
    "columns": null,
    "values": null,
    "results": [
      {
        "issueId": "53697147EAB75800C7B297549E31EF61",
        "crashTime": "2021-11-26 20:52:10 354",
        "crashId": "3C96296D4312F12ACAF6DEBFC22443AB",
        "user": "597862998"
      },
      {
        "issueId": "2D28D10DB4F7FA0E05B30578BA98436A",
        "crashTime": "2021-11-26 11:23:04 385",
        "crashId": "58626B94F85D3588F46C41AF59E443A0",
        "user": "osewR0lNantT5rywYITNayOep-wA"
      }
    ]
  },
  "cost": 0
}
Previous
Get the list of versions, bundle, and handlers
Built with