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

# curator:parse-export

> Parse a Curator export file into individual content type files

Ingests a Curator export file and outputs multiple individual files based on the content types you select.

**Arguments:**

| Argument     | Required | Description                                 |
| ------------ | -------- | ------------------------------------------- |
| `filePath`   | Yes      | Path to the export file (`.iwe` or `.iwgz`) |
| `outputPath` | No       | Directory to write the output file to       |

**Options:**

| Option      | Description                                         |
| ----------- | --------------------------------------------------- |
| `--exclude` | Exclude the selected keys instead of including them |

**Examples:**

```bash theme={null}
# Include only selected content types
php artisan curator:parse-export /path/to/export.iwe /path/to/output

# Exclude selected content types
php artisan curator:parse-export /path/to/export.iwe /path/to/output --exclude
```
