> ## Documentation Index
> Fetch the complete documentation index at: https://docs.asccli.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Crashes

# crashes

> Inspect TestFlight crash submissions with `asc testflight crashes`

Crash-report workflows now live under `asc testflight crashes ...`. This page keeps the older `crashes` URL, but the current CLI surface is the `testflight crashes` command family.

## Usage

```bash theme={null} theme={null}
asc testflight crashes <subcommand> [flags]
```

## List crashes

Retrieve crash submissions for an app:

```bash theme={null} theme={null}
asc testflight crashes list --app APP_ID
asc testflight crashes list --app APP_ID --sort -createdDate
asc testflight crashes list --app APP_ID --device-model "iPhone15,3" --os-version "17.2"
asc testflight crashes list --app APP_ID --paginate
```

## View and download crash details

```bash theme={null} theme={null}
asc testflight crashes view --submission-id SUBMISSION_ID
asc testflight crashes log --submission-id SUBMISSION_ID
asc testflight crashes log --crash-log-id CRASH_LOG_ID
```

## Cleanup

```bash theme={null} theme={null}
asc testflight crashes delete --submission-id SUBMISSION_ID --confirm
```

## Useful flags

<ParamField path="--app" type="string" required>
  App Store Connect app ID, bundle ID, or exact app name
</ParamField>

<ParamField path="--sort" type="string">
  Sort order: `createdDate` or `-createdDate`
</ParamField>

<ParamField path="--device-model" type="string">
  Filter by device model
</ParamField>

<ParamField path="--os-version" type="string">
  Filter by OS version
</ParamField>

<ParamField path="--paginate" type="boolean">
  Fetch all pages automatically
</ParamField>

## Example workflows

### View recent crashes

```bash theme={null} theme={null}
asc testflight crashes list --app 123456789 --sort -createdDate --limit 10 --output table
```

### Export all crash submissions

```bash theme={null} theme={null}
asc testflight crashes list --app 123456789 --paginate > crashes.json
```

### Fetch a crash log for a submission

```bash theme={null} theme={null}
asc testflight crashes log --submission-id SUBMISSION_ID
```

## Related

<CardGroup cols={2}>
  <Card title="Feedback command" icon="comment" href="/commands/feedback">
    View beta tester feedback
  </Card>

  <Card title="TestFlight command" icon="plane" href="/commands/testflight">
    Manage TestFlight groups, testers, feedback, and crashes
  </Card>
</CardGroup>
