[Yandex Cloud documentation](../../../../index.md) > [Yandex Managed Service for ClickHouse®](../../../index.md) > API reference > [gRPC](../index.md) > [MlModel](index.md) > Get

# Managed Service for ClickHouse API, gRPC: MlModelService.Get

Returns the specified machine learning model.
To get the list of all available models, make a [List](list.md#List) request.

## gRPC request

**rpc Get ([GetMlModelRequest](#yandex.cloud.mdb.clickhouse.v1.GetMlModelRequest)) returns ([MlModel](#yandex.cloud.mdb.clickhouse.v1.MlModel))**

## GetMlModelRequest {#yandex.cloud.mdb.clickhouse.v1.GetMlModelRequest}

```json
{
  "cluster_id": "string",
  "ml_model_name": "string"
}
```

#|
||Field | Description ||
|| cluster_id | **string**

Required field. ID of the cluster that the model belongs to.

The maximum string length in characters is 50. ||
|| ml_model_name | **string**

Required field. Name of the model to return.
To get a model name make a [MlModelService.List](list.md#List) request.

The maximum string length in characters is 63. ||
|#

## MlModel {#yandex.cloud.mdb.clickhouse.v1.MlModel}

```json
{
  "name": "string",
  "cluster_id": "string",
  "type": "MlModelType",
  "uri": "string"
}
```

#|
||Field | Description ||
|| name | **string**

Name of the the model. ||
|| cluster_id | **string**

ID of the ClickHouse cluster that the model belongs to. ||
|| type | enum **MlModelType**

Type of the model.

- `ML_MODEL_TYPE_CATBOOST`: CatBoost model. ||
|| uri | **string**

Model file URL. You can only use models stored in Object Storage. ||
|#