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

# Client.Clusters.Get

```go theme={"system"}
func (*ClusterClient) Get(
    ctx context.Context,
    slug string,
) (*workflows.Cluster, error)
```

Get a cluster by its slug.

## Parameters

<ParamField path="slug" type="string">
  The slug of the cluster
</ParamField>

## Returns

A cluster object.

<RequestExample>
  ```go Go theme={"system"}
  cluster, err := client.Clusters.Get(ctx,
      "my-cluster-tZD9Ca1qsqt3V"
  )
  ```
</RequestExample>

## Errors

<ParamField path="not_found" type="cluster not found">
  The specified cluster does not exist.
</ParamField>
