Skip to main content
The crashes command retrieves crash reports from TestFlight beta testing.

Usage

asc crashes [flags]

List crashes

Retrieve crash reports for an app:
asc crashes --app APP_ID
asc crashes --app APP_ID --sort -createdDate
asc crashes --app APP_ID --limit 10

Output example

{
  "data": [
    {
      "id": "crash-id",
      "type": "betaCrashReports",
      "attributes": {
        "crashCount": 5,
        "createdDate": "2024-03-04T09:15:00Z",
        "exceptionType": "NSInvalidArgumentException",
        "symbolicated": true
      }
    }
  ]
}

Flags

--app
string
required
App ID to retrieve crashes for
--sort
string
Sort order: createdDate, -createdDate, crashCount
--limit
number
Maximum number of results
--output
string
Output format: json, table, or markdown
--paginate
boolean
Fetch all pages automatically

Example workflows

View recent crashes

asc crashes --app 123456789 --sort -createdDate --limit 10 --output table

Export all crashes

asc crashes --app 123456789 --paginate > crashes.json

Count total crashes

asc crashes --app 123456789 --output json | jq '[.data[].attributes.crashCount] | add'

Feedback command

View beta tester feedback

TestFlight guide

Complete TestFlight guide