# Datasets.Get

```go
func (datasetClient) Get(
    ctx context.Context,
    slug string,
) (*datasets.Dataset, error)
```

Get a dataset by its slug.

## Parameters

**slug**

`string`

The slug of the dataset

## Returns

A dataset object.

```go title="Go"
s1_sar, err := client.Datasets.Get(ctx,
    "open_data.copernicus.sentinel1_sar"
)
```

## Errors

**not\_found**

`No such dataset`

The specified dataset does not exist.
