# Clusters.List

```go
func (*ClusterClient) List(ctx context.Context) ([]*workflows.Cluster, error)
```

Fetch all available clusters.

## Returns

A list of all available clusters. Each cluster includes its slug, name, description, whether it can be deleted, and deployed workflows.

```go title="Go"
clusters, err := client.Clusters.List(ctx)
```
