Run symbolication
Endpoint
/i/crash_symbols/symbolicate
Ⓔ Enterprise Only
This API is available exclusively in Countly Enterprise.
Overview
Starts symbolication for a crash group using a selected symbol document.
Authentication
- Authentication methods:
- API Key (parameter):
api_key=YOUR_API_KEY - Auth Token (parameter):
auth_token=YOUR_AUTH_TOKEN - Auth Token (header):
countly-token: YOUR_AUTH_TOKEN
- API Key (parameter):
Permissions
- Required permission:
Updateon thecrashesfeature
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | String | Yes | Application identifier |
crashgroup_id | String | Yes | Crash group ID |
symbol_id | String | Yes | Symbol document ID |
return_url | String | Yes | Callback URL for external symbolication server flow |
api_key | String | Yes (or auth_token) | API key authentication |
auth_token | String | Yes (or api_key) | Auth token authentication |
Response
Success Response
Success message depends on symbolication path:
{
"result": "Symbolication success"
}
{
"result": "Success"
}
{
"result": "Data sent to symbolication server"
}
Response Fields
| Field | Type | Description |
|---|---|---|
result | String | Status/result message |
Error Responses
| HTTP Status | Response |
|---|---|
| 400 | { "result": "Missing report id" } |
| 400 | { "result": "Missing symbol id" } |
| 400 | { "result": "Missing return url" } |
| 400 | { "result": "Could not find symbol file" } |
| 400 | { "result": "Could not find crashgroup" } |
| 400 | { "result": "Could not create job" } or { "result": "Could not create job: ..." } |
| 400 | { "result": "Symbolication file is not found..." } |
| 400 | { "result": "Could not save result, please see symbolication log for more details" } |
| 400 | { "result": "Please set symbolication server url" } |
| 400 | { "result": "Please provide symbolication server's api key" } |
| 500 | { "result": "Crash plugin is not enabled or is older version" } |
| 500 | { "result": "No original binary available" } |
| 500 | { "result": "Error loading JS source map file" } |
Behavior/Processing
- Creates a job record in
symbolication_jobsand updates crash group status fields. - Uses one of three paths:
- Android native (
minidump_stackwalklocal processing) - JavaScript (local source map deobfuscation)
- External symbolication server (
symbolication_server+symbolication_key)
- Android native (
- External-server path is asynchronous and returns after submitting job data.
Database Collections
| Collection | Used for | Data touched by this endpoint |
|---|---|---|
countly.app_crashsymbols{app_id} | Endpoint data source | Stores endpoint-related records this endpoint reads or modifies. |
countly.app_crashgroups{app_id} | Endpoint data source | Stores endpoint-related records this endpoint reads or modifies. |
countly.symbolication_jobs | Endpoint data source | Stores endpoint-related records this endpoint reads or modifies. |
countly_fs.crash_symbols | Endpoint data source | Stores endpoint-related records this endpoint reads or modifies. |
Examples
Example 1: Start symbolication for a crash group
/i/crash_symbols/symbolicate?api_key=YOUR_API_KEY&app_id=5f9c8a3b4d1e2a001f3b4567&crashgroup_id=65c5dd952c5f5300121a0009&symbol_id=65c5e0732c5f5300121a0020&return_url=https://your-server.com/i/crash_symbols/symbolicatation_result
Related Endpoints
Ⓔ Enterprise
This feature is part of Countly Enterprise.
Get Access:
Already a Customer? Use support portal if you have any questions
Last Updated
2026-02-16