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

# checkpoint export

> Export a checkpoint to a remote storage provider

Uploads a Checkpoint generated by a Training Job to a [Remote Storage Provider Connection](/cli/reference/storage), such as Amazon S3, Cloudflare R2, or GCP Cloud Storage.

## Usage

```bash theme={null}
flexai checkpoint export <checkpoint_identifier> --storage-provider <storage_provider_name> --destination-path <destination_path> [flags]
```

## Arguments

| Argument                | Type   | Required | Description                                   |
| ----------------------- | ------ | -------- | --------------------------------------------- |
| `checkpoint_identifier` | string | Yes      | The name or UUID of the Checkpoint to export. |

## Flags

| Flag                 | Short | Type    | Required | Description                                                                       |
| -------------------- | ----- | ------- | -------- | --------------------------------------------------------------------------------- |
| `--storage-provider` | `-s`  | string  | Yes      | The name of the Remote Storage Provider Connection to upload to.                  |
| `--destination-path` | `-d`  | string  | Yes      | The destination path in the remote storage where the checkpoint will be uploaded. |
| `--help`             | `-h`  | boolean | No       | Displays this help page.                                                          |
| `--verbose`          | `-v`  | boolean | No       | Provides more detailed output when exporting a Checkpoint.                        |
