## Poll saved URLs for successful dataset exports (Hugging Face, Kaggle, Google Sheets)

`datasets.get_export_links(strdataset_id)  -> DatasetGetExportLinksResponse`

**get** `/api/v1/datasets/{dataset_id}/export-links`

Poll saved URLs for successful dataset exports (Hugging Face, Kaggle, Google Sheets)

### Parameters

- `dataset_id: str`

### Returns

- `class DatasetGetExportLinksResponse: …`

  - `huggingface: Optional[object]`

    URL of the dataset on Hugging Face, if a successful export exists

  - `kaggle: Optional[object]`

    URL of the dataset on Kaggle, if a successful export exists

  - `google_sheets: Optional[object]`

    URL of the Google Spreadsheet, if a successful export exists

### Example

```python
import os
from adaption import Adaption

client = Adaption(
    api_key=os.environ.get("ADAPTION_API_KEY"),  # This is the default and can be omitted
)
response = client.datasets.get_export_links(
    "dataset_id",
)
print(response.huggingface)
```

#### Response

```json
{
  "huggingface": {},
  "kaggle": {},
  "google_sheets": {}
}
```
