## Download **post** `/models/{modelId}/download` Request a link to download the given `modelId` ### Path Parameters - `modelId: string` ### Body Parameters - `modelEpoch: optional string` The epoch hash of the model to download Only available for Flux Lora Trained models with epochs Will only apply to the main model in the download request If not set, the default (latest or setup at model level) epoch will be used ### Returns - `jobId: string` The job id associated with the download request ### Example ```http curl https://api.cloud.scenario.com/v1/models/$MODEL_ID/download \ -H 'Content-Type: application/json' \ -u "$SCENARIO_SDK_API_KEY:SCENARIO_SDK_API_SECRET" \ -d '{}' ``` #### Response ```json { "jobId": "jobId" } ```