> ## 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:import

> Import content from a local file or another Curator instance

Imports content to this Curator instance using a local file or another Curator instance via the API.

**Options:**

| Option     | Shortcut | Description                                    |
| ---------- | -------- | ---------------------------------------------- |
| `--file`   | `-f`     | Path to the import file (`.iwe` or `.iwgz`)    |
| `--url`    | `-u`     | URL of a Curator instance to pull content from |
| `--key`    | `-k`     | API key for the remote Curator instance        |
| `--latest` |          | Import the most recent automatic export        |

**Examples:**

```bash theme={null}
# Import from a local file
php artisan curator:import --file=/path/to/export.iwe

# Import from another Curator instance
php artisan curator:import --url=https://other-curator.example.com --key=my-api-key

# Import the latest automatic export
php artisan curator:import --latest
```
