[Документация Yandex Cloud](../../../../index.md) > [Yandex Compute Cloud](../../../index.md) > Справочник API > [gRPC (англ.)](../index.md) > [GpuCluster](index.md) > Get

# Compute Cloud API, gRPC: GpuClusterService.Get

Returns the specified GPU cluster.
To get the list of available GPU clusters, make a [List](list.md#List) request.

## gRPC request

**rpc Get ([GetGpuClusterRequest](#yandex.cloud.compute.v1.GetGpuClusterRequest)) returns ([GpuCluster](#yandex.cloud.compute.v1.GpuCluster))**

## GetGpuClusterRequest {#yandex.cloud.compute.v1.GetGpuClusterRequest}

```json
{
  "gpu_cluster_id": "string"
}
```

#|
||Field | Description ||
|| gpu_cluster_id | **string**

ID of the GPU cluster to return.
To get a GPU cluster ID, make a [GpuClusterService.List](list.md#List) request. ||
|#

## GpuCluster {#yandex.cloud.compute.v1.GpuCluster}

```json
{
  "id": "string",
  "folder_id": "string",
  "created_at": "google.protobuf.Timestamp",
  "name": "string",
  "description": "string",
  "labels": "map<string, string>",
  "status": "Status",
  "zone_id": "string",
  "interconnect_type": "GpuInterconnectType"
}
```

A GPU cluster. For details about the concept, see [documentation](../../../concepts/gpus.md#gpu-clusters).

#|
||Field | Description ||
|| id | **string**

ID of GPU cluster. ||
|| folder_id | **string**

ID of the folder that the GPU cluster belongs to. ||
|| created_at | **[google.protobuf.Timestamp](https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#timestamp)**

Creation timestamp. ||
|| name | **string**

Name of the GPU cluster.
The name is unique within the folder. ||
|| description | **string**

Description of the GPU cluster. ||
|| labels | **object** (map<**string**, **string**>)

GPU cluster labels as `key:value` pairs. ||
|| status | enum **Status**

Status of the GPU cluster.

- `CREATING`: GPU cluster is being created.
- `READY`: GPU cluster is ready to use.
- `ERROR`: GPU cluster encountered a problem and cannot operate.
- `DELETING`: GPU cluster is being deleted. ||
|| zone_id | **string**

ID of the availability zone where the GPU cluster resides. ||
|| interconnect_type | enum **GpuInterconnectType**

Type of interconnect used for this GPU cluster.

- `INFINIBAND`: InfiniBand interconnect. ||
|#