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

# Export Datasets

> Easily export your datasets in JSONL format.

## How to Export

To export your datasets, navigate to the dataset you wish to export and click the "Export dataset" button. The dataset will be exported in JSONL format, allowing for seamless integration with other tools and easy sharing with team members.

<img className="block dark:hidden" src="https://mintcdn.com/finetunedb/bemL8Zj00kYdZwsp/images/exportdata.webp?fit=max&auto=format&n=bemL8Zj00kYdZwsp&q=85&s=cf9191748da9a90f3a8ed8789dace9d2" alt="Hero Light" width="2793" height="1347" data-path="images/exportdata.webp" />

<img className="hidden dark:block" src="https://mintcdn.com/finetunedb/bemL8Zj00kYdZwsp/images/exportdata.webp?fit=max&auto=format&n=bemL8Zj00kYdZwsp&q=85&s=cf9191748da9a90f3a8ed8789dace9d2" alt="Hero Dark" width="2793" height="1347" data-path="images/exportdata.webp" />

### Example Format

```json theme={null}
{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the capital of France?"}, {"role": "assistant", "content": "Paris, as if everyone doesn't know that already."}]}
{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who wrote 'Romeo and Juliet'?"}, {"role": "assistant", "content": "Oh, just some guy named William Shakespeare. Ever heard of him?"}]}
```
