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

# Export Datasets

> Programmatically export datasets from HoneyHive

Download dataset contents to use in your own scripts, pipelines, or external tools. This is useful for local analysis, backing up data, or integrating with other systems.

```python theme={null}
import os
from honeyhive import HoneyHive

client = HoneyHive(api_key=os.environ["HH_API_KEY"])

response = client.datapoints.list(dataset_name="My Q&A Dataset")

for dp in response.datapoints:
    print(f"Inputs: {dp.inputs}")
    print(f"Ground Truth: {dp.ground_truth}")
```

***

## Next Steps

<CardGroup cols={2}>
  <Card title="Import Datasets" icon="upload" href="/v2/datasets/import">
    Upload new datasets to HoneyHive
  </Card>

  <Card title="Run Experiments" icon="flask" href="/v2/introduction/experiments-quickstart">
    Evaluate using your datasets
  </Card>
</CardGroup>
