> ## Documentation Index
> Fetch the complete documentation index at: https://docs.galtea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieving Dataset

> Retrieve a specific dataset by its ID.

## Returns

Returns a [Dataset](/concepts/product/dataset) object for the given dataset ID.

## Example

```python theme={"system"}
dataset = galtea.datasets.get(dataset_id=dataset_id)
```

## Parameters

<ResponseField name="dataset_id" type="string" required>
  The ID of the dataset you want to retrieve.

  <Note>Deprecated alias: `test_id`.</Note>
</ResponseField>
