> For the complete documentation index, see [llms.txt](https://docs.labii.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.labii.com/api/concepts/how-can-i-load-labii-data-from-api-into-dataframe.md).

# How can I load Labii data from API into DataFrame

```
content = [line.split('\t') for line in tsv.splitlines()]
df = pd.DataFrame(content)
```
