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

```python theme={"system"}
def Client.dataset(slug: str) -> Dataset
```

Get a dataset by its slug.

## Parameters

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

## Returns

A dataset object.

<RequestExample>
  ```python Python theme={"system"}
  s1_sar = client.dataset(
      "open_data.copernicus.sentinel1_sar"
  )
  ```
</RequestExample>

## Errors

<ParamField path="NotFoundError" type="No such dataset: non.existent.dataset">
  The specified dataset does not exist.
</ParamField>
