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

# 📽️ Youtube Channel

To add all the videos from a youtube channel to your app, use the data\_type as `youtube_channel`.

<Note>
  Make sure you have all the required packages installed before using this data type. You can install them by running the following command in your terminal.

  ```bash
  pip install -u "embedchain[youtube]"
  ```
</Note>

```python
from embedchain import App

app = App()
app.add("@channel_name", data_type="youtube_channel")
```
