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

```go theme={"system"}
func (datasetClient) Get(
    ctx context.Context,
    slug string,
) (*datasets.Dataset, error)
```

Get a dataset by its slug.

## Parameters

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

## Returns

A dataset object.

<RequestExample>
  ```go Go theme={"system"}
  s1_sar, err := client.Datasets.Get(ctx,
      "open_data.copernicus.sentinel1_sar"
  )
  ```
</RequestExample>

## Errors

<ParamField path="not_found" type="No such dataset">
  The specified dataset does not exist.
</ParamField>
