# Get Model Version Download Uri

Launch stage: GA

`GET /api/2.0/mlflow/model-versions/get-download-uri`

Gets a URI to download the model version.

API scopes: mlflow

## Query parameters

- `name` (string, optional)
  Name of the registered model
- `version` (string, optional)
  Model version number

## Returns

- `artifact_uri` (string, optional)
  URI corresponding to where artifacts for this model version are stored.

## Response

```json
{
  "artifact_uri": "string"
}
```

