> ## 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.

# ClusterClient.find

```python theme={"system"}
def ClusterClient.find(cluster_or_slug: Cluster | str): Cluster
```

Get a cluster by its slug.

## Parameters

<ParamField path="cluster_or_slug" type="Cluster | str">
  The cluster or cluster slug to get.
</ParamField>

## Returns

A cluster object.

<RequestExample>
  ```python Python theme={"system"}
  cluster = cluster_client.find("my-cluster-CvufcSxcC9SKfe")
  ```
</RequestExample>
