# ClusterClient.find

```python
def ClusterClient.find(cluster_or_slug: Cluster | str): Cluster
```

Get a cluster by its slug.

## Parameters

**cluster\_or\_slug**

`Cluster | str`

The cluster or cluster slug to get.

## Returns

A cluster object, including its slug, display name, description, whether it can be deleted, and deployed workflows.

```python title="Python"
cluster = cluster_client.find("my-cluster-CvufcSxcC9SKfe")
```
