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

# Get Linked Datasets

> Get all datasets linked to a specification.

## Returns

Returns a list of [Dataset](/concepts/product/dataset) objects linked to the specification.

## Example

```python theme={"system"}
datasets = galtea.specifications.get_datasets(
    specification_id=accuracy_specification.id,
)
```

## Parameters

<ResponseField name="specification_id" type="string" required>
  The ID of the specification to get linked datasets for.
</ResponseField>
