# Fetch YouTube Video

{% embed url="<https://www.youtube.com/embed/3HEoSywNVcE>" %}

## Configuration&#x20;

### Video URL

Enter the URL for the Youtube video you want to fetch. This section can contain variables.&#x20;

### Output Variable&#x20;

Save the returned Youtube video data in a variable. Example: `my_video`

### Format&#x20;

The returned Youtube video data will always be exported in **JSON**.&#x20;

## Sample Output

```json
{
  "video": {
    "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "title": "Sample Music Video",
    "length_seconds": 1024,
    "views": 71936,
    "likes": 551,
    "author": "John Doe",
    "category": "Music",
    "published_time": "Jan 1, 2023",
    "description": "Sample description",
    "keywords": ["music", "sample", "video"],
    "is_family_safe": true,
    "thumbnail": "https://example.com/thumbnail.jpg"
  },
  "channel": {
    "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "name": "John Doe",
    "link": "http://example.com",
    "subscribers": 32400,
    "thumbnail": "https://example.com/channel_thumbnail.jpg"
  },
  "comment": {
    "total": 24
  },
  "available_transcripts_languages": [
    {
      "name": "English (auto-generated)",
      "lang": "en"
    }
  ],
  "recommended_videos": {
    "videos": [
      {
        "position": 1,
        "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
        "title": "Sample Recommended Video",
        "link": "https://example.com/video",
        "views": 846988,
        "channel": {
          "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
          "title": "John Doe",
          "link": "https://example.com/channel",
          "thumbnail": "https://example.com/channel_thumbnail.jpg"
        },
        "length": "10:00",
        "published_time": "1 year ago",
        "thumbnail": "https://example.com/video_thumbnail.jpg"
      }
    ]
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://university.mindstudio.ai/docs/building-ai-agents/blocks-reference/fetch-youtube-video.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
