# YouTube Channel API

Each successful request to this API will cost **`5`** credits.<br>

| Parameter                                                          | Description                                                                                                                                                                                                                                                      |
| ------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <p>api\_key<br><br><mark style="color:red;">required</mark></p>    | <p>Your personal API key. Available on your dashboard. <br><br>Type: <em><strong>String</strong></em></p>                                                                                                                                                        |
| <p>channel\_id<br><br><mark style="color:red;">required</mark></p> | <p>This is the YouTube Channel ID.<br><br>Type: <em><strong>String</strong></em></p>                                                                                                                                                                             |
| country                                                            | <p>This is the <a href="https://en.wikipedia.org/wiki/ISO_3166-1">ISO code</a> of the country from which you are seeking Youtube search results. <br><br>Default Value - <strong><code>us</code></strong> <br><br>Type - <strong>String</strong></p>             |
| language                                                           | <p>Language of the results. Possible Values - <strong><code>en</code></strong>, <strong><code>es</code></strong>, <strong><code>fr</code></strong>, <strong><code>de</code></strong>, etc. <br><br>Default Value - en <br><br>Type - <strong>String</strong></p> |

#### &#x20; <a href="#parameters" id="parameters"></a>

### API Example

{% tabs %}
{% tab title="cURL" %}

```json
cURL "https://api.scrapingdog.com/youtube/channel?api_key=APIKEY&channel_id=@TaylorSwift"
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

api_key = "5eaa61a6e562fc52fe763tr516e4653"
url = "https://api.scrapingdog.com/youtube/channel/"

params = {
    "api_key": api_key,
    "channel_id": "@TaylorSwift"
}

response = requests.get(url, params=params)

if response.status_code == 200:
    data = response.json()
    print(data)
else:
    print(f"Request failed with status code: {response.status_code}")

```

{% endtab %}

{% tab title="Node JS" %}

```javascript
const axios = require('axios');

const api_key = 'APIKEY';
const url = 'https://api.scrapingdog.com/youtube/channel/';

const params = {
  api_key: api_key,
  channel_id: '@TaylorSwift'
};

axios
  .get(url, { params: params })
  .then(function (response) {
    if (response.status === 200) {
      const data = response.data;
      console.log(data)
    } else {
      console.log('Request failed with status code: ' + response.status);
    }
  })
  .catch(function (error) {
    console.error('Error making the request: ' + error.message);
  });

```

{% endtab %}

{% tab title="PHP" %}

```php
<?php

// Set the API key and request parameters
$api_key = 'APIKEY';
$channel_id = '@TaylorSwift';

// Set the API endpoint
$url = 'https://api.scrapingdog.com/youtube/channel/?api_key=' . $api_key . '&channel_id=' . $channel_id;

// Initialize cURL session
$ch = curl_init($url);

// Set cURL options
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// Execute the cURL request
$response = curl_exec($ch);

// Check if the request was successful
if ($response === false) {
    echo 'cURL error: ' . curl_error($ch);
} else {
    // Process the response data as needed
    echo $response;
}

// Close the cURL session
curl_close($ch);

```

{% endtab %}

{% tab title="Ruby" %}

```ruby
require 'net/http'
require 'uri'

# Set the API key and request parameters
api_key = 'APIKEY'
channel_id = '@TaylorSwift'

# Construct the API endpoint URL
url = URI.parse("https://api.scrapingdog.com/youtube/channel/?api_key=#{api_key}&channel_id=#{channel_id}")

# Create an HTTP GET request
request = Net::HTTP::Get.new(url)

# Create an HTTP client
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true # Enable SSL (https)

# Send the request and get the response
response = http.request(request)

# Check if the request was successful
if response.is_a?(Net::HTTPSuccess)
  puts response.body # Process the response data as needed
else
  puts "HTTP request failed with code: #{response.code}, message: #{response.message}"
end

```

{% endtab %}

{% tab title="Java" %}

```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
        try {
            // Set the API key and request parameters
            String apiKey = "APIKEY";
            String channel_id = "@TaylorSwift";

            // Construct the API endpoint URL
            String apiUrl = "https://api.scrapingdog.com/youtube/channel/?api_key=" + apiKey
                    + "&channel_id=" + channel_id

            // Create a URL object from the API URL string
            URL url = new URL(apiUrl);

            // Open a connection to the URL
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();

            // Set the request method to GET
            connection.setRequestMethod("GET");

            // Get the response code
            int responseCode = connection.getResponseCode();

            if (responseCode == 200) {
                // Read the response from the connection
                BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                String inputLine;
                StringBuilder response = new StringBuilder();

                while ((inputLine = reader.readLine()) != null) {
                    response.append(inputLine);
                }
                reader.close();

                // Process the response data as needed
                System.out.println(response.toString());
            } else {
                System.out.println("HTTP request failed with response code: " + responseCode);
            }

            // Close the connection
            connection.disconnect();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

```

{% endtab %}
{% endtabs %}

### API Response

```json
{
    "about": {
        "description": "All’s fair in love and poetry... New album THE TORTURED POETS DEPARTMENT. Out April 19 🤍",
        "subscribers": 61000000,
        "videos": 285,
        "views": 39,
        "joined_date_text": "Joined Sep 20, 2006",
        "joined_date": "2006-09-20",
        "links": [
            {
                "title": "The Tortured Poets Department",
                "link": "https://taylor.lnk.to/thetorturedpoetsdepartment"
            },
            {
                "title": "taylorswift.com",
                "link": "https://taylorswift.com"
            },
            {
                "title": "Instagram",
                "link": "https://instagram.com/taylorswift"
            },
            {
                "title": "Facebook",
                "link": "https://facebook.com/TaylorSwift"
            },
            {
                "title": "Twitter",
                "link": "https://twitter.com/taylorswift13"
            },
            {
                "title": "TikTok",
                "link": "https://tiktok.com/@taylorswift"
            },
            {
                "title": "Tumblr",
                "link": "https://taylorswift.tumblr.com"
            }
        ]
    },
    "channel": {
        "handle": "http://www.youtube.com/@TaylorSwift",
        "id": "UCqECaJ8Gagnn7YCbPEzWH6g",
        "title": "Taylor Swift",
        "subscribers": 61000000,
        "videos": 285,
        "description": "All’s fair in love and poetry... New album THE TORTURED POETS DEPARTMENT. Out April 19 🤍",
        "keywords": "taylor swift musician music videos",
        "available_countries": [
            "QA",
            "SC",
            "DM",
            "FO",
            "NO",
            "GA",
            "CL",
            "GI",
            "TD",
            "GW",
            "LT",
            "GP",
            "MN",
            "MU",
            "RS",
            "TL",
            "UM",
            "VN",
            "PY",
            "EE",
            "GG",
            "BS",
            "VU",
            "AR",
            "PA",
            "ME",
            "AZ",
            "NF",
            "IR",
            "PW",
            "CM",
            "GB",
            "BL",
            "PK",
            "EH",
            "LU",
            "VG",
            "SD",
            "KM",
            "NA",
            "PR",
            "GQ",
            "MO",
            "MV",
            "FI",
            "NI",
            "MH",
            "SL",
            "AS",
            "TT",
            "CD",
            "NP",
            "TM",
            "HK",
            "MF",
            "DE",
            "NG",
            "GY",
            "HR",
            "IS",
            "BM",
            "CN",
            "MY",
            "AL",
            "DO",
            "ID",
            "NZ",
            "BT",
            "UG",
            "SE",
            "KN",
            "CU",
            "MA",
            "JM",
            "PS",
            "TF",
            "LV",
            "MW",
            "FJ",
            "VA",
            "GR",
            "TN",
            "IL",
            "ST",
            "MP",
            "BD",
            "SM",
            "EG",
            "KE",
            "MG",
            "MX",
            "VI",
            "LY",
            "CO",
            "AM",
            "KG",
            "MZ",
            "AT",
            "IE",
            "WS",
            "LA",
            "UY",
            "CV",
            "IM",
            "FK",
            "CH",
            "BN",
            "NC",
            "RE",
            "TG",
            "KH",
            "IT",
            "GS",
            "FR",
            "TO",
            "LI",
            "SN",
            "UA",
            "BE",
            "MQ",
            "TV",
            "CF",
            "JE",
            "ZM",
            "KY",
            "NR",
            "AD",
            "TH",
            "TJ",
            "AU",
            "EC",
            "BO",
            "CA",
            "JO",
            "LB",
            "BV",
            "HM",
            "HT",
            "KW",
            "BH",
            "UZ",
            "DJ",
            "CI",
            "CW",
            "MC",
            "YE",
            "SG",
            "ER",
            "SX",
            "IN",
            "KI",
            "VC",
            "KP",
            "MK",
            "PL",
            "SO",
            "TW",
            "BF",
            "AE",
            "MR",
            "RU",
            "SV",
            "CG",
            "CX",
            "YT",
            "SH",
            "SJ",
            "TK",
            "ZW",
            "GT",
            "BA",
            "OM",
            "TR",
            "AO",
            "KZ",
            "US",
            "NL",
            "BW",
            "BI",
            "TZ",
            "HU",
            "LC",
            "SY",
            "HN",
            "ES",
            "GD",
            "IO",
            "PE",
            "DK",
            "RO",
            "LK",
            "PM",
            "SA",
            "DZ",
            "AF",
            "LR",
            "MS",
            "BG",
            "JP",
            "PT",
            "SI",
            "CY",
            "GL",
            "GU",
            "CC",
            "PH",
            "BB",
            "ML",
            "SK",
            "SR",
            "SZ",
            "BJ",
            "AW",
            "PF",
            "CR",
            "CK",
            "AI",
            "PN",
            "GE",
            "BQ",
            "AX",
            "KR",
            "LS",
            "TC",
            "SB",
            "ZA",
            "GM",
            "BY",
            "RW",
            "CZ",
            "AG",
            "ET",
            "MM",
            "SS",
            "GH",
            "MT",
            "NU",
            "VE",
            "WF",
            "PG",
            "GF",
            "AQ",
            "IQ",
            "BR",
            "FM",
            "GN",
            "NE",
            "MD",
            "BZ"
        ],
        "tags": [
            "taylor",
            "swift",
            "musician",
            "music",
            "videos"
        ],
        "facebook_profile_id": "TaylorSwift",
        "first_link": "https://taylor.lnk.to/thetorturedpoetsdepartment",
        "is_family_safe": true,
        "avatar": "https://yt3.googleusercontent.com/PFmecESWwRnrbIFZ04vG6UbdXKzjyC3vQkufqqEYEHpXlwHFRMDN8RuvG7A1WRnbGKVZTcyFYQ=s900-c-k-c0x00ffffff-no-rj",
        "banner": "https://yt3.googleusercontent.com/zOsRFesXGWVQMWsPcUYFMJp1hgXzi8FXRuQmnZ19u_dpAXjyAaWVbEjdpHo5yZOcah06ppIh=w2560-fcrop64=1,00005a57ffffa5a8-k-c0xffffffff-no-nd-rj"
    },
    "highlighted_video": {
        "id": "Sl6en1NPTYM",
        "title": "Taylor Swift - I Can Do It With A Broken Heart (Official Video)",
        "link": "https://www.youtube.com/watch?v=Sl6en1NPTYM",
        "description": "Watch the official music video for “I Can Do It With A Broken Heart\" by Taylor Swift.\n\nBuy/download/stream ‘The Tortured Poets Department': ",
        "external_links": [
            "https://taylor.lnk.to/thetorturedpoetsdepartment",
            "https://ts.lnk.to/subscribe",
            "http://taylorswift.lnk.to/store",
            "http://tiktok.com/@taylorswift",
            "http://instagram.com/taylorswift",
            "http://twitter.com/taylorswift13",
            "http://snapchat.com/add/taylorswift",
            "http://facebook.com/taylorswift",
            "http://taylorswift.tumblr.com/",
            "http://www.taylorswift.com/",
            "http://tiktok.com/@taylornation",
            "http://instagram.com/taylornation",
            "http://twitter.com/taylornation13",
            "http://taylornation.tumblr.com/"
        ],
        "views": 33253543,
        "published_time": "8 months ago"
    },
    "videos_sections": [
        {
            "section_title": "Taylor Swift - THE TORTURED POETS DEPARTMENT",
            "videos": [
                {
                    "position": 1,
                    "id": "Sl6en1NPTYM",
                    "title": "Taylor Swift - I Can Do It With A Broken Heart (Official Video)",
                    "link": "https://www.youtube.com/watch?v=Sl6en1NPTYM",
                    "views": 33,
                    "length": "3:43",
                    "published_time": "8 months ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/Sl6en1NPTYM/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAyf7-p1gB1-hZKtysFaOLLHojQ0A"
                },
                {
                    "position": 2,
                    "id": "i8_w_m6HLJ0",
                    "title": "Taylor Swift - I Can Do It With a Broken Heart (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=i8_w_m6HLJ0",
                    "views": 32,
                    "length": "3:43",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/i8_w_m6HLJ0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLA5l3d7614FMRFfNylgMcHxLakAwA"
                },
                {
                    "position": 3,
                    "id": "q3zqJs7JUCQ",
                    "title": "Taylor Swift - Fortnight (feat. Post Malone) (Official Music Video)",
                    "link": "https://www.youtube.com/watch?v=q3zqJs7JUCQ",
                    "views": 147,
                    "length": "4:10",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/q3zqJs7JUCQ/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCZr5sANS7UvQBpGE54ziTpdHeb6Q"
                },
                {
                    "position": 4,
                    "id": "0GQ_QeZxdzo",
                    "title": "Taylor Swift - Fortnight (feat. Post Malone) (Behind the Scenes)",
                    "link": "https://www.youtube.com/watch?v=0GQ_QeZxdzo",
                    "views": 3,
                    "length": "3:40",
                    "published_time": "10 months ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/0GQ_QeZxdzo/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAX18mZtJFqt4aq4pZynniRVAPuWg"
                },
                {
                    "position": 5,
                    "id": "RQMz4JDbtmI",
                    "title": "Taylor Swift - The Tortured Poets Department (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=RQMz4JDbtmI",
                    "views": 16,
                    "length": "4:58",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/RQMz4JDbtmI/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBxEghfoFEjyiIGwgLm6kAjABCLXw"
                },
                {
                    "position": 6,
                    "id": "wRKXAAV6jh4",
                    "title": "Taylor Swift - My Boy Only Breaks His Favorite Toys (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=wRKXAAV6jh4",
                    "views": 21,
                    "length": "3:29",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/wRKXAAV6jh4/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBiYKKOo9QuVT_E8nRrUZM-N4hCOQ"
                },
                {
                    "position": 7,
                    "id": "EVbtjaWXQVg",
                    "title": "Taylor Swift - Down Bad (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=EVbtjaWXQVg",
                    "views": 30,
                    "length": "4:26",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/EVbtjaWXQVg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDE6JJOtP0vWYUivciJkfdGRDc53A"
                },
                {
                    "position": 8,
                    "id": "CCUr2pNJft4",
                    "title": "Taylor Swift - So Long, London (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=CCUr2pNJft4",
                    "views": 21,
                    "length": "4:28",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/CCUr2pNJft4/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCMVkplOCNB6bQZFoEXLKNNNUq9gg"
                },
                {
                    "position": 9,
                    "id": "U2W173hRfyA",
                    "title": "Taylor Swift - But Daddy I Love Him (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=U2W173hRfyA",
                    "views": 21,
                    "length": "5:45",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/U2W173hRfyA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCQwCFzRBQQNeuBe1foWf669sIj7g"
                },
                {
                    "position": 10,
                    "id": "0EKbEP2L32M",
                    "title": "Taylor Swift - Fresh Out The Slammer (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=0EKbEP2L32M",
                    "views": 10,
                    "length": "3:36",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/0EKbEP2L32M/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAmiYkP_HxQOZAnuVjtl79jjiH5Zg"
                },
                {
                    "position": 11,
                    "id": "uEssK8o3jKg",
                    "title": "Taylor Swift - Florida!!! (feat. Florence + The Machine) (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=uEssK8o3jKg",
                    "views": 13,
                    "length": "3:40",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/uEssK8o3jKg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCYg1uoiKDuOebIBAyXY6Lmv5DGFQ"
                },
                {
                    "position": 12,
                    "id": "OOYlWF6V8t8",
                    "title": "Taylor Swift - Guilty as Sin (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=OOYlWF6V8t8",
                    "views": 37,
                    "length": "4:19",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/OOYlWF6V8t8/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAyH2LIBL_OCbbYX6tqCDXNjTDUzA"
                }
            ]
        },
        {
            "section_title": "#ForaFortnightChallenge on Shorts",
            "videos": [
                {
                    "position": 1,
                    "id": "2hBLC7E8v3A",
                    "title": "Share your “fortnight” recap with #ForAFortnightChallenge 🤍 brought to you by YouTube Shorts",
                    "link": "https://www.youtube.com/watch?v=2hBLC7E8v3A",
                    "views": 123,
                    "length": "0:16",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/2hBLC7E8v3A/hqdefault.jpg?sqp=-oaymwE2CNACELwBSFXyq4qpAygIARUAAIhCGAFwAcABBvABAfgBtgiAAoAPigIMCAAQARhyIFIoQTAP&rs=AOn4CLAUjyi_bQe3ScASOxdbF2uyhd8Auw"
                },
                {
                    "position": 2,
                    "id": "xtMZ5cYKJKI",
                    "title": "🍻🤍 #ForAFortnightChallenge @TaylorSwift",
                    "link": "https://www.youtube.com/watch?v=xtMZ5cYKJKI",
                    "views": 54,
                    "length": "0:16",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/xtMZ5cYKJKI/hqdefault.jpg?sqp=-oaymwE2CNACELwBSFXyq4qpAygIARUAAIhCGAFwAcABBvABAfgBtgiAAoAPigIMCAAQARhlIE8oQTAP&rs=AOn4CLDZriuhxc2wX-sTkgCn2ftb_xHzQA"
                },
                {
                    "position": 3,
                    "id": "tRM_3jveVvc",
                    "title": "#ForAFortnightChallenge @TaylorSwift @TaylorNation 🤍",
                    "link": "https://www.youtube.com/watch?v=tRM_3jveVvc",
                    "views": 955,
                    "length": "0:15",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/tRM_3jveVvc/hqdefault.jpg?sqp=-oaymwE2CNACELwBSFXyq4qpAygIARUAAIhCGAFwAcABBvABAfgBtgiAAoAPigIMCAAQARhYIGIoZTAP&rs=AOn4CLBTbCrXWSSaqQ-aEycQc1Ntyo2_CQ"
                },
                {
                    "position": 4,
                    "id": "RW82nhfMQ8U",
                    "title": "A glimpse into the past year  #ForAFortnightChallenge @TaylorSwift @TaylorNation",
                    "link": "https://www.youtube.com/watch?v=RW82nhfMQ8U",
                    "views": 369,
                    "length": "0:17",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/RW82nhfMQ8U/hqdefault.jpg?sqp=-oaymwE2CNACELwBSFXyq4qpAygIARUAAIhCGAFwAcABBvABAfgBzgWAAoAKigIMCAAQARh_IDAoLjAP&rs=AOn4CLCp86AvUjPUV2UH5Km9_lJeo8FolQ"
                },
                {
                    "position": 5,
                    "id": "mWqQxF20V_Q",
                    "title": "…for a fortnight there, we were together… #ForAFortnightChallenge #taylorswift #fortnight",
                    "link": "https://www.youtube.com/watch?v=mWqQxF20V_Q",
                    "views": 246,
                    "length": "0:17",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/mWqQxF20V_Q/hqdefault.jpg?sqp=-oaymwE2CNACELwBSFXyq4qpAygIARUAAIhCGAFwAcABBvABAfgBtgiAAoAPigIMCAAQARhlIFYoQjAP&rs=AOn4CLA0LiXh6IxoDO8HFXtsSsQCRtVAuA"
                }
            ]
        },
        {
            "section_title": "1989 (Taylor's Version)",
            "videos": [
                {
                    "position": 1,
                    "id": "FsGdznlfE2U",
                    "title": "Taylor Swift - Welcome To New York (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=FsGdznlfE2U",
                    "views": 20,
                    "length": "3:38",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/FsGdznlfE2U/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBnZ7ZXpO_1-3EPvEju8aFwXMZP2A"
                },
                {
                    "position": 2,
                    "id": "gir8BEqAutk",
                    "title": "Taylor Swift - Blank Space (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=gir8BEqAutk",
                    "views": 21,
                    "length": "3:57",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/gir8BEqAutk/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLC3EtzCYNyLXGHyE4UT5VDyA5_2gA"
                },
                {
                    "position": 3,
                    "id": "2JgvVfOfoWI",
                    "title": "Taylor Swift - Style (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=2JgvVfOfoWI",
                    "views": 28,
                    "length": "3:56",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/2JgvVfOfoWI/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBvY3ral7OROC5h5xwkQDi6bFgCqw"
                },
                {
                    "position": 4,
                    "id": "gp1MR2WAAXY",
                    "title": "Taylor Swift - Out Of The Woods (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=gp1MR2WAAXY",
                    "views": 10,
                    "length": "4:02",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/gp1MR2WAAXY/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCRWHf0Ynb9Mno2_XDan9OVAn6ciA"
                },
                {
                    "position": 5,
                    "id": "_Usd5X5XJXM",
                    "title": "Taylor Swift - All You Had To Do Was Stay (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=_Usd5X5XJXM",
                    "views": 7,
                    "length": "3:19",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/_Usd5X5XJXM/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAhVmakDOLf1mqmE8FwZmPKdErjXA"
                },
                {
                    "position": 6,
                    "id": "mvVBuG4IOW4",
                    "title": "Taylor Swift - Shake It Off (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=mvVBuG4IOW4",
                    "views": 18,
                    "length": "3:45",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/mvVBuG4IOW4/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCZrEbOkHKmTUfUsFmyKAHDiEqUzg"
                },
                {
                    "position": 7,
                    "id": "89aQIli8aVU",
                    "title": "Taylor Swift - I Wish You Would (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=89aQIli8aVU",
                    "views": 5,
                    "length": "3:33",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/89aQIli8aVU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBOcZPcwSUHaLYbr0_yAEpPTv0NWQ"
                },
                {
                    "position": 8,
                    "id": "lUvBk4owRNU",
                    "title": "Taylor Swift - Bad Blood (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=lUvBk4owRNU",
                    "views": 10,
                    "length": "3:37",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/lUvBk4owRNU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBW_Ay5QEwlYtspc7pNzEbIAGsoLw"
                },
                {
                    "position": 9,
                    "id": "vtW_4j7SsZk",
                    "title": "Taylor Swift - Wildest Dreams (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=vtW_4j7SsZk",
                    "views": 15,
                    "length": "3:46",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/vtW_4j7SsZk/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDQ1mv-83R7SA8833N36Nq0BFhexw"
                },
                {
                    "position": 10,
                    "id": "rnwD7veCoFQ",
                    "title": "Taylor Swift - How You Get The Girl (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=rnwD7veCoFQ",
                    "views": 7,
                    "length": "4:13",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/rnwD7veCoFQ/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCLcZixRj9dkYGEKKdzvKR-lYsoXw"
                },
                {
                    "position": 11,
                    "id": "mvxQYPR4lmU",
                    "title": "Taylor Swift - This Love (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=mvxQYPR4lmU",
                    "views": 24,
                    "length": "4:10",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/mvxQYPR4lmU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBDhYGBZAGoRYSNaf7Mc_SmlSRczg"
                },
                {
                    "position": 12,
                    "id": "0jTGzm-6cYE",
                    "title": "Taylor Swift - I Know Places (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=0jTGzm-6cYE",
                    "views": 6,
                    "length": "3:21",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/0jTGzm-6cYE/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLC_FFU7k51A3rZkNGhlfSq5lpDYdg"
                }
            ]
        },
        {
            "section_title": "Taylor Swift - Speak Now (Taylor's Version)",
            "videos": [
                {
                    "position": 1,
                    "id": "oxNLRqMJMZk",
                    "title": "Taylor Swift - Mine (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=oxNLRqMJMZk",
                    "views": 18,
                    "length": "3:56",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/oxNLRqMJMZk/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCYoD0t6i9d92ojTjjyhEVuh7ekOg"
                },
                {
                    "position": 2,
                    "id": "UlFrV5GJA_4",
                    "title": "Taylor Swift - Sparks Fly (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=UlFrV5GJA_4",
                    "views": 15,
                    "length": "4:24",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/UlFrV5GJA_4/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBi-EstM2u80OHDZz7o0B2cp7QIsA"
                },
                {
                    "position": 3,
                    "id": "qc2Z-OX9wnc",
                    "title": "Taylor Swift - Back To December (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=qc2Z-OX9wnc",
                    "views": 37,
                    "length": "4:58",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/qc2Z-OX9wnc/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLC55tTIsXqL17Hnc0XMoxuR-4Oa_Q"
                },
                {
                    "position": 4,
                    "id": "JlZnvyBqceY",
                    "title": "Taylor Swift - Speak Now (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=JlZnvyBqceY",
                    "views": 14,
                    "length": "4:06",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/JlZnvyBqceY/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCo4IakT5W9EIGPyE_9RyIuA6eMsA"
                },
                {
                    "position": 5,
                    "id": "N-FYySSy0rM",
                    "title": "Taylor Swift - Dear John (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=N-FYySSy0rM",
                    "views": 12,
                    "length": "6:50",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/N-FYySSy0rM/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBtH_UZg2BrBLH_3ftfF0awhLzICA"
                },
                {
                    "position": 6,
                    "id": "8AR1dKawCi8",
                    "title": "Taylor Swift - Mean (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=8AR1dKawCi8",
                    "views": 5,
                    "length": "4:03",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/8AR1dKawCi8/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLD29skVtlZRfz_2u77ptf5reTA2yw"
                },
                {
                    "position": 7,
                    "id": "pRhWAXg4xek",
                    "title": "Taylor Swift - The Story Of Us (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=pRhWAXg4xek",
                    "views": 11,
                    "length": "4:32",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/pRhWAXg4xek/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAWK37Ud7JV1AqJPsxmbPdAsCxpaw"
                },
                {
                    "position": 8,
                    "id": "maEVfpxDB8k",
                    "title": "Taylor Swift - Never Grow Up (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=maEVfpxDB8k",
                    "views": 4,
                    "length": "4:57",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/maEVfpxDB8k/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDdYd4hRB7WQrV1wLZi5PkSwJwWkw"
                },
                {
                    "position": 9,
                    "id": "igIfiqqVHtA",
                    "title": "Taylor Swift - Enchanted (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=igIfiqqVHtA",
                    "views": 67,
                    "length": "5:57",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/igIfiqqVHtA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDMiThzGiwLrXUt2Ui4RNJtAykHTA"
                },
                {
                    "position": 10,
                    "id": "EH70M5OeS4o",
                    "title": "Taylor Swift - Better Than Revenge (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=EH70M5OeS4o",
                    "views": 10,
                    "length": "3:44",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/EH70M5OeS4o/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLC_341qhxcN9tp_NKfYNQfTm048yw"
                },
                {
                    "position": 11,
                    "id": "vO6JqQpJboY",
                    "title": "Taylor Swift - Innocent (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=vO6JqQpJboY",
                    "views": 4,
                    "length": "5:05",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/vO6JqQpJboY/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCpBVplY-tZQPnzO_Kcc-7FJp2lsw"
                },
                {
                    "position": 12,
                    "id": "4cC6fw8EqWU",
                    "title": "Taylor Swift - Haunted (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=4cC6fw8EqWU",
                    "views": 7,
                    "length": "4:09",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/4cC6fw8EqWU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBYSdPXilpn62lhmsp5Qa7IofajFA"
                }
            ]
        },
        {
            "section_title": "Taylor Swift - Midnights",
            "videos": [
                {
                    "position": 1,
                    "id": "h8DLofLM7No",
                    "title": "Taylor Swift - Lavender Haze (Official Music Video)",
                    "link": "https://www.youtube.com/watch?v=h8DLofLM7No",
                    "views": 71,
                    "length": "3:31",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/h8DLofLM7No/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAZQHr5ScxxQcoeLmrJx-FL4m9VGQ"
                },
                {
                    "position": 2,
                    "id": "b1kbLwvqugk",
                    "title": "Taylor Swift - Anti-Hero (Official Music Video)",
                    "link": "https://www.youtube.com/watch?v=b1kbLwvqugk",
                    "views": 221,
                    "length": "5:10",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/b1kbLwvqugk/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCIY21J5dABfq5C0MUx2TldipwbAg"
                },
                {
                    "position": 3,
                    "id": "b7QlX3yR2xs",
                    "title": "Taylor Swift - Bejeweled (Official Music Video)",
                    "link": "https://www.youtube.com/watch?v=b7QlX3yR2xs",
                    "views": 93,
                    "length": "5:54",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/b7QlX3yR2xs/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBteYqKP4t3gWmjo4Q5mCfJFEwpog"
                },
                {
                    "position": 4,
                    "id": "-qee6dFKlw4",
                    "title": "Taylor Swift - High Infidelity (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=-qee6dFKlw4",
                    "views": 10,
                    "length": "3:57",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/-qee6dFKlw4/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAflSpIBHNioGvefcDFJlEJNBvAiA"
                },
                {
                    "position": 5,
                    "id": "X0Jti9F-oQA",
                    "title": "Taylor Swift - Dear Reader (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=X0Jti9F-oQA",
                    "views": 6,
                    "length": "3:49",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/X0Jti9F-oQA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDAcN3HIt-Mq6bhlUNuyn6xEEWxIA"
                },
                {
                    "position": 6,
                    "id": "B-MfwP_RmHY",
                    "title": "Taylor Swift - Would've, Could've, Should've (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=B-MfwP_RmHY",
                    "views": 20,
                    "length": "4:24",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/B-MfwP_RmHY/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCgvG_H6t9kK5FvB6h8AlTJ_Qt8GA"
                },
                {
                    "position": 7,
                    "id": "Y2a73EvnZ4s",
                    "title": "Taylor Swift - Glitch (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=Y2a73EvnZ4s",
                    "views": 5,
                    "length": "2:32",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/Y2a73EvnZ4s/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBRThAH3LSD9jHDbAOoncFB_-KSEQ"
                },
                {
                    "position": 8,
                    "id": "ySZGZrcqvr4",
                    "title": "Taylor Swift - Paris (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=ySZGZrcqvr4",
                    "views": 9,
                    "length": "3:20",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/ySZGZrcqvr4/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLByk-k0lZ4EgoqR_ZSwozj2Nl_2SQ"
                },
                {
                    "position": 9,
                    "id": "l8Tps3PITx4",
                    "title": "Taylor Swift - Bigger Than The Whole Sky (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=l8Tps3PITx4",
                    "views": 10,
                    "length": "3:44",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/l8Tps3PITx4/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCJGRMEgyBinVE2gEpR0chWBWyWuA"
                },
                {
                    "position": 10,
                    "id": "iFX6_9h7th0",
                    "title": "Taylor Swift - The Great War (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=iFX6_9h7th0",
                    "views": 24,
                    "length": "4:04",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/iFX6_9h7th0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBU8UQjRhE3OQ7iI3wpffoEsERfnQ"
                },
                {
                    "position": 11,
                    "id": "Tmz1lz0zcLQ",
                    "title": "Taylor Swift - Mastermind (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=Tmz1lz0zcLQ",
                    "views": 17,
                    "length": "3:15",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/Tmz1lz0zcLQ/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAPkhWK6GWOGml9NNLmjkPRIx4dtw"
                },
                {
                    "position": 12,
                    "id": "rn0brgg2BpI",
                    "title": "Taylor Swift - Sweet Nothing (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=rn0brgg2BpI",
                    "views": 12,
                    "length": "3:13",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/rn0brgg2BpI/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBdd4Px0oADYIsr7IrXSYvTaEM3qg"
                }
            ]
        },
        {
            "section_title": "Red (Taylor's Version)",
            "videos": [
                {
                    "position": 1,
                    "id": "5UMCrq-bBCg",
                    "title": "Taylor Swift ft. Chris Stapleton - I Bet You Think About Me (Taylor's Version) (Official Video)",
                    "link": "https://www.youtube.com/watch?v=5UMCrq-bBCg",
                    "views": 68,
                    "length": "6:16",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/5UMCrq-bBCg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCMeyjSuaqZqsRLwGrjawmcF3KTZg"
                },
                {
                    "position": 2,
                    "id": "tollGa3S0o8",
                    "title": "Taylor Swift - All Too Well: The Short Film",
                    "link": "https://www.youtube.com/watch?v=tollGa3S0o8",
                    "views": 106,
                    "length": "14:56",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/tollGa3S0o8/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCSr_5mOyupMGVCH_cOMjtSUVlx1Q"
                },
                {
                    "position": 3,
                    "id": "gRo0ZtgB2io",
                    "title": "All Too Well (Sad Girl Autumn Version) - Recorded at Long Pond Studios (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=gRo0ZtgB2io",
                    "views": 5,
                    "length": "10:01",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/gRo0ZtgB2io/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAKPBF-2_SSEq_yuizTP0JRhnRK4A"
                },
                {
                    "position": 4,
                    "id": "-mrC5tRkxrY",
                    "title": "Taylor Swift - State Of Grace (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=-mrC5tRkxrY",
                    "views": 9,
                    "length": "5:00",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/-mrC5tRkxrY/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB5dKtkCfXSz_E9jhZXScFt5AKgow"
                },
                {
                    "position": 5,
                    "id": "R_rUYuFtNO4",
                    "title": "Taylor Swift - Red (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=R_rUYuFtNO4",
                    "views": 52,
                    "length": "3:41",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/R_rUYuFtNO4/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDzLg0RwzNWeifRVsseSuFNk2M1Ow"
                },
                {
                    "position": 6,
                    "id": "u1D1AgDfreg",
                    "title": "Taylor Swift - Treacherous (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=u1D1AgDfreg",
                    "views": 6,
                    "length": "4:01",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/u1D1AgDfreg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAUgcuEFBwe2lGfXi7g_M9zBCbonQ"
                },
                {
                    "position": 7,
                    "id": "TqAollrUJdA",
                    "title": "Taylor Swift - I Knew You Were Trouble (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=TqAollrUJdA",
                    "views": 20,
                    "length": "3:41",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/TqAollrUJdA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDkA9XAMZF5kMym_XkcfeCf7hkMeg"
                },
                {
                    "position": 8,
                    "id": "9OQBDdNHmXo",
                    "title": "Taylor Swift - All Too Well (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=9OQBDdNHmXo",
                    "views": 20,
                    "length": "5:31",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/9OQBDdNHmXo/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAi5WQHQuf7NjiHvTGwA5Dx9nE4vQ"
                },
                {
                    "position": 9,
                    "id": "9boiT64sm0Q",
                    "title": "Taylor Swift - 22 (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=9boiT64sm0Q",
                    "views": 14,
                    "length": "3:52",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/9boiT64sm0Q/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBNG0o8jlZVjP9FnagKs6BGDdH_bA"
                },
                {
                    "position": 10,
                    "id": "w1AV_35zVwU",
                    "title": "Taylor Swift - I Almost Do (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=w1AV_35zVwU",
                    "views": 7,
                    "length": "4:05",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/w1AV_35zVwU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAgYDDRvAxFzu6YADE8WvQNwwN6-w"
                },
                {
                    "position": 11,
                    "id": "zJFcr1KyFqE",
                    "title": "Taylor Swift - We Are Never Ever Getting Back Together (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=zJFcr1KyFqE",
                    "views": 23,
                    "length": "3:15",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/zJFcr1KyFqE/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAhc1SItzv0-NDYFrbRUwWOgHQGkQ"
                },
                {
                    "position": 12,
                    "id": "OhJ-S9Nrh7Q",
                    "title": "Taylor Swift - Stay Stay Stay (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=OhJ-S9Nrh7Q",
                    "views": 6,
                    "length": "3:28",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/OhJ-S9Nrh7Q/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLC1fFofilPwHsxtP4f-7NVEGC7rmg"
                }
            ]
        },
        {
            "section_title": "Fearless (Taylor’s Version)",
            "videos": [
                {
                    "position": 1,
                    "id": "7lLigiVgJsE",
                    "title": "Taylor Swift - Fearless (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=7lLigiVgJsE",
                    "views": 45,
                    "length": "4:05",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/7lLigiVgJsE/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCwQ3LkvJ-36oF3rYPjlhyUd4chCw"
                },
                {
                    "position": 2,
                    "id": "rLCol1C3ouc",
                    "title": "Taylor Swift - Fifteen (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=rLCol1C3ouc",
                    "views": 9,
                    "length": "4:55",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/rLCol1C3ouc/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLD40uNKpuhDIqjGjqln_vw9kSd7KQ"
                },
                {
                    "position": 3,
                    "id": "aXzVF3XeS8M",
                    "title": "Taylor Swift - Love Story (Taylor’s Version) [Official Lyric Video]",
                    "link": "https://www.youtube.com/watch?v=aXzVF3XeS8M",
                    "views": 54,
                    "length": "4:01",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/aXzVF3XeS8M/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB0wrIVCKvNe70OKtWLKwR68C1JXQ"
                },
                {
                    "position": 4,
                    "id": "tMhiHrL7rPE",
                    "title": "Taylor Swift - Hey Stephen (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=tMhiHrL7rPE",
                    "views": 9,
                    "length": "4:17",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/tMhiHrL7rPE/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLD-N1Cn1sx6b6Rah2ZTNsYM5meH9w"
                },
                {
                    "position": 5,
                    "id": "9-rKvhsjwKU",
                    "title": "Taylor Swift - White Horse (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=9-rKvhsjwKU",
                    "views": 12,
                    "length": "3:59",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/9-rKvhsjwKU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBhzciVm0sRJP8zRLU0Kmf4TET7iQ"
                },
                {
                    "position": 6,
                    "id": "vwp8Ur6tO-8",
                    "title": "Taylor Swift - You Belong With Me (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=vwp8Ur6tO-8",
                    "views": 43,
                    "length": "3:53",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/vwp8Ur6tO-8/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDJBI32r2eHarGT5YHv3AyEBufXJg"
                },
                {
                    "position": 7,
                    "id": "qsUK-BG5OQQ",
                    "title": "Taylor Swift - Breathe (Taylor's Version) (Lyric Video) ft. Colbie Caillat",
                    "link": "https://www.youtube.com/watch?v=qsUK-BG5OQQ",
                    "views": 10,
                    "length": "4:26",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/qsUK-BG5OQQ/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCD_NZiGSe2bU-P0QJfYwCnnE_F6g"
                },
                {
                    "position": 8,
                    "id": "cwFbq-70EwE",
                    "title": "Taylor Swift - Tell Me Why (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=cwFbq-70EwE",
                    "views": 3,
                    "length": "3:22",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/cwFbq-70EwE/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB2H8sGBUIRpIg2yXeM6FikF55vjQ"
                },
                {
                    "position": 9,
                    "id": "DNaSlUYIXBg",
                    "title": "Taylor Swift - You're Not Sorry (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=DNaSlUYIXBg",
                    "views": 9,
                    "length": "4:23",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/DNaSlUYIXBg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDwcMxvbopdOt94YycZteo6IHMZLg"
                },
                {
                    "position": 10,
                    "id": "DlexmDDSDZ0",
                    "title": "Taylor Swift - The Way I Loved You (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=DlexmDDSDZ0",
                    "views": 91,
                    "length": "4:06",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/DlexmDDSDZ0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLD5MOdtQ-dBfm9Xi6Nu1UN5fedOKA"
                },
                {
                    "position": 11,
                    "id": "T-41vMWQTUA",
                    "title": "Taylor Swift - Forever & Always (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=T-41vMWQTUA",
                    "views": 6,
                    "length": "3:46",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/T-41vMWQTUA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCmNupFB_ATZ1U3bPMBJZ2-duX8Xw"
                },
                {
                    "position": 12,
                    "id": "KZeI9I875Ig",
                    "title": "Taylor Swift - The Best Day (Taylor's Version) (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=KZeI9I875Ig",
                    "views": 8,
                    "length": "4:09",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/KZeI9I875Ig/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCdq0Robd1NtELW71d4PhzvQKFprA"
                }
            ]
        },
        {
            "section_title": "evermore album",
            "videos": [
                {
                    "position": 1,
                    "id": "Uzii44SDYFA",
                    "title": "Taylor Swift - cardigan / august / willow (Live From The 63rd GRAMMYs ® / 2021)",
                    "link": "https://www.youtube.com/watch?v=Uzii44SDYFA",
                    "views": 10,
                    "length": "5:25",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/Uzii44SDYFA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB2M-TxE5cnubA6cdEBrzCIuPXcyg"
                },
                {
                    "position": 2,
                    "id": "RsEZmictANA",
                    "title": "Taylor Swift - willow (Official Music Video)",
                    "link": "https://www.youtube.com/watch?v=RsEZmictANA",
                    "views": 153,
                    "length": "4:13",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/RsEZmictANA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLC3lnrME8PueroVjuMNYxFhTR2dEw"
                },
                {
                    "position": 3,
                    "id": "wMpqCRF7TKg",
                    "title": "Taylor Swift - champagne problems (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=wMpqCRF7TKg",
                    "views": 66,
                    "length": "4:08",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/wMpqCRF7TKg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDlRVB6ua2iUvxbzyGY6oJWMt6tFQ"
                },
                {
                    "position": 4,
                    "id": "Pz-f9mM3Ms8",
                    "title": "Taylor Swift - gold rush (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=Pz-f9mM3Ms8",
                    "views": 18,
                    "length": "3:09",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/Pz-f9mM3Ms8/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLA1A4cpTCuKjE44jLqW7uX_tPDKeA"
                },
                {
                    "position": 5,
                    "id": "WuvhOD-mP8M",
                    "title": "Taylor Swift - ‘tis the damn season (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=WuvhOD-mP8M",
                    "views": 16,
                    "length": "3:56",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/WuvhOD-mP8M/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDsrBDZGlyUsYhn50WjoT8gxYfMhw"
                },
                {
                    "position": 6,
                    "id": "ukxEKY_7MOc",
                    "title": "Taylor Swift - tolerate it (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=ukxEKY_7MOc",
                    "views": 22,
                    "length": "4:08",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/ukxEKY_7MOc/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB5RDeqtLT2-QRGyd-y6DXrcdqImQ"
                },
                {
                    "position": 7,
                    "id": "IEPomqor2A8",
                    "title": "Taylor Swift - no body, no crime (Official Lyric Video) ft. HAIM",
                    "link": "https://www.youtube.com/watch?v=IEPomqor2A8",
                    "views": 27,
                    "length": "3:38",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/IEPomqor2A8/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDEu-4Q4oYeMs1gTNsx5spLLk1kJg"
                },
                {
                    "position": 8,
                    "id": "tP4TTgt4nb0",
                    "title": "Taylor Swift - happiness (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=tP4TTgt4nb0",
                    "views": 11,
                    "length": "5:18",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/tP4TTgt4nb0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBBFKmoEcDaO8H7jmoNwRgwh8xtEw"
                },
                {
                    "position": 9,
                    "id": "zI4DS5GmQWE",
                    "title": "Taylor Swift - dorothea (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=zI4DS5GmQWE",
                    "views": 12,
                    "length": "3:45",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/zI4DS5GmQWE/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLApWQZ4-y8y5DLaBiW7MpP_AQyCuw"
                },
                {
                    "position": 10,
                    "id": "c_p_TBaHvos",
                    "title": "Taylor Swift - coney island (Lyric Video) ft. The National",
                    "link": "https://www.youtube.com/watch?v=c_p_TBaHvos",
                    "views": 13,
                    "length": "4:38",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/c_p_TBaHvos/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBE5IIwOJLVrMkSAA-P1AfF00ghjw"
                },
                {
                    "position": 11,
                    "id": "9nIOx-ezlzA",
                    "title": "Taylor Swift - ivy (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=9nIOx-ezlzA",
                    "views": 16,
                    "length": "4:19",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/9nIOx-ezlzA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDTaGt4rnB-sPZcfb--31Fxx8QnhA"
                },
                {
                    "position": 12,
                    "id": "YPlNBb6I8qU",
                    "title": "Taylor Swift - cowboy like me (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=YPlNBb6I8qU",
                    "views": 13,
                    "length": "4:40",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/YPlNBb6I8qU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLASgv6J6qBZQgpJHPDIzYthtrKvKw"
                }
            ]
        },
        {
            "section_title": "folklore",
            "videos": [
                {
                    "position": 1,
                    "id": "K-a8s8OLBSE",
                    "title": "Taylor Swift - cardigan",
                    "link": "https://www.youtube.com/watch?v=K-a8s8OLBSE",
                    "views": 200,
                    "length": "4:35",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/K-a8s8OLBSE/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLC3GJOu57YS-rXJmVRjB9vZRSCVZw"
                },
                {
                    "position": 2,
                    "id": "KsZ6tROaVOQ",
                    "title": "Taylor Swift - the 1 (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=KsZ6tROaVOQ",
                    "views": 60,
                    "length": "3:32",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/KsZ6tROaVOQ/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAkCDy9GvpfDAcTaBe7LFHrAbjtGg"
                },
                {
                    "position": 3,
                    "id": "zLSUp53y-HQ",
                    "title": "Taylor Swift - cardigan (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=zLSUp53y-HQ",
                    "views": 38,
                    "length": "4:01",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/zLSUp53y-HQ/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAQ5Djlm8Otvhah48c0PkrCiXrElQ"
                },
                {
                    "position": 4,
                    "id": "2s5xdY6MCeI",
                    "title": "Taylor Swift - the last great american dynasty (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=2s5xdY6MCeI",
                    "views": 29,
                    "length": "3:52",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/2s5xdY6MCeI/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDzedqHBE0Z6ipzg_9avYazIH1iQw"
                },
                {
                    "position": 5,
                    "id": "osdoLjUNFnA",
                    "title": "Taylor Swift – exile (feat. Bon Iver) (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=osdoLjUNFnA",
                    "views": 117,
                    "length": "4:47",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/osdoLjUNFnA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB2JeWaasUNabzg8pjrXZ8vx5GXkQ"
                },
                {
                    "position": 6,
                    "id": "OWbDJFtHl3w",
                    "title": "Taylor Swift – my tears ricochet (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=OWbDJFtHl3w",
                    "views": 49,
                    "length": "4:17",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/OWbDJFtHl3w/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB44Q8hnrExdYz4o0V7uu5Ak6wI2w"
                },
                {
                    "position": 7,
                    "id": "KaM1bCuG4xo",
                    "title": "Taylor Swift – mirrorball (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=KaM1bCuG4xo",
                    "views": 29,
                    "length": "3:30",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/KaM1bCuG4xo/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDMZbVuWaZPG-hc3Zn4vPgEeJAMyg"
                },
                {
                    "position": 8,
                    "id": "pEY-GPsru_E",
                    "title": "Taylor Swift – seven (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=pEY-GPsru_E",
                    "views": 22,
                    "length": "3:30",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/pEY-GPsru_E/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLA57G8lD8la2ga0OgASkNYOIWUfHg"
                },
                {
                    "position": 9,
                    "id": "nn_0zPAfyo8",
                    "title": "Taylor Swift – august (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=nn_0zPAfyo8",
                    "views": 114,
                    "length": "4:24",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/nn_0zPAfyo8/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCg843h3ecrEm5cw1kP7R8iNJ1W5A"
                },
                {
                    "position": 10,
                    "id": "9bdLTPNrlEg",
                    "title": "Taylor Swift – this is me trying (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=9bdLTPNrlEg",
                    "views": 24,
                    "length": "3:16",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/9bdLTPNrlEg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDmLzDmX3UKVSg9Ib5DNa9_0ra91g"
                },
                {
                    "position": 11,
                    "id": "MLV2SJKWk4M",
                    "title": "Taylor Swift – illicit affairs (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=MLV2SJKWk4M",
                    "views": 29,
                    "length": "3:12",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/MLV2SJKWk4M/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB7hcy7RWtDcB8ThIvT2elogtlRqA"
                },
                {
                    "position": 12,
                    "id": "OuFnpmGwg5k",
                    "title": "Taylor Swift – invisible string (Official Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=OuFnpmGwg5k",
                    "views": 30,
                    "length": "4:14",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/OuFnpmGwg5k/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLA5c0NDjeVX1KwiaWQY1pF_KAMCFw"
                }
            ]
        },
        {
            "section_title": "Lover Era",
            "videos": [
                {
                    "position": 1,
                    "id": "AqAJLh9wuZ0",
                    "title": "Taylor Swift - The Man (Official Video)",
                    "link": "https://www.youtube.com/watch?v=AqAJLh9wuZ0",
                    "views": 108,
                    "length": "4:15",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/AqAJLh9wuZ0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDq4m7AWZ0FrF0IdJer9d2TLsX4Pg"
                },
                {
                    "position": 2,
                    "id": "-BjZmE2gtdo",
                    "title": "Taylor Swift - Lover (Official Music Video)",
                    "link": "https://www.youtube.com/watch?v=-BjZmE2gtdo",
                    "views": 320,
                    "length": "3:59",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/-BjZmE2gtdo/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCpVdiuUk_8pMqZFhvwfUJsSppqSQ"
                },
                {
                    "position": 3,
                    "id": "Dkk9gvTmCXY",
                    "title": "Taylor Swift - You Need To Calm Down",
                    "link": "https://www.youtube.com/watch?v=Dkk9gvTmCXY",
                    "views": 363,
                    "length": "3:31",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/Dkk9gvTmCXY/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB_1pId_gf_IvLuF6Re7VIqrUtFyw"
                },
                {
                    "position": 4,
                    "id": "FuXNumBwDOM",
                    "title": "Taylor Swift - ME! (feat. Brendon Urie of Panic! At The Disco) ft. Brendon Urie",
                    "link": "https://www.youtube.com/watch?v=FuXNumBwDOM",
                    "views": 442,
                    "length": "4:09",
                    "published_time": "6 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/FuXNumBwDOM/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDzqFiiqlIVaQXklAw2qF02yZjAlQ"
                },
                {
                    "position": 5,
                    "id": "Vgt1d3eAm7A",
                    "title": "Taylor Swift - Cornelia Street (Live From Paris)",
                    "link": "https://www.youtube.com/watch?v=Vgt1d3eAm7A",
                    "views": 13,
                    "length": "5:02",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/Vgt1d3eAm7A/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLC5O6xGeFfHADoiPp8Xk7wNlqXnOA"
                },
                {
                    "position": 6,
                    "id": "F3aXpa1rQEY",
                    "title": "Taylor Swift - The Man (Live From Paris)",
                    "link": "https://www.youtube.com/watch?v=F3aXpa1rQEY",
                    "views": 8,
                    "length": "3:44",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/F3aXpa1rQEY/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDHGkU4ag7gNXydS3d6epyz-Ik3Tw"
                },
                {
                    "position": 7,
                    "id": "40RsbcFRwNA",
                    "title": "Miss Americana | Official Trailer",
                    "link": "https://www.youtube.com/watch?v=40RsbcFRwNA",
                    "views": 8,
                    "length": "2:03",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/40RsbcFRwNA/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBBoEuoKUu9HLj91cr7gpawq9fMSg"
                },
                {
                    "position": 8,
                    "id": "GJU-S1t2r1M",
                    "title": "Taylor Swift - Only The Young (Featured in Miss Americana / Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=GJU-S1t2r1M",
                    "views": 14,
                    "length": "2:39",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/GJU-S1t2r1M/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCcTUSFgFwovcO8vkkC_9hKZx9V1w"
                },
                {
                    "position": 9,
                    "id": "tbEekLA7J3Y",
                    "title": "Taylor Swift - The Man (Lyric Video)",
                    "link": "https://www.youtube.com/watch?v=tbEekLA7J3Y",
                    "views": 33,
                    "length": "3:20",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/tbEekLA7J3Y/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLC8cXdW7RnxIBKbc2iUwjvoIsHrwQ"
                },
                {
                    "position": 10,
                    "id": "SVY8I46dkb0",
                    "title": "Taylor Swift - Live at the 2019 American Music Awards",
                    "link": "https://www.youtube.com/watch?v=SVY8I46dkb0",
                    "views": 115,
                    "length": "11:40",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/SVY8I46dkb0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDcOByGFHfgqEfuvqEzEA6_N4wf8Q"
                },
                {
                    "position": 11,
                    "id": "KmT4Y8w1nho",
                    "title": "Taylor Swift - Lover (First Dance Remix)",
                    "link": "https://www.youtube.com/watch?v=KmT4Y8w1nho",
                    "views": 4,
                    "length": "3:54",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/KmT4Y8w1nho/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDKViHyVshBll-Z9_lWr_Xp2aT9Kg"
                },
                {
                    "position": 12,
                    "id": "kjD3LoXp-Pw",
                    "title": "Taylor Swift - \"False God\" (Live on Saturday Night Live / 2019)",
                    "link": "https://www.youtube.com/watch?v=kjD3LoXp-Pw",
                    "views": 5,
                    "length": "4:03",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/kjD3LoXp-Pw/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDfANUavVYvUZETOfxGY1tIDoDNbw"
                }
            ]
        },
        {
            "section_title": "Music videos",
            "videos": [
                {
                    "position": 1,
                    "id": "e-ORhEE9VVg",
                    "title": "Taylor Swift - Blank Space",
                    "link": "https://www.youtube.com/watch?v=e-ORhEE9VVg",
                    "views": 3,
                    "length": "4:33",
                    "published_time": "10 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/e-ORhEE9VVg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAp_Qn1QWy0anqJLm-zZ7aYdUGtBw"
                },
                {
                    "position": 2,
                    "id": "nfWlot6h_JM",
                    "title": "Taylor Swift - Shake It Off",
                    "link": "https://www.youtube.com/watch?v=nfWlot6h_JM",
                    "views": 3,
                    "length": "4:02",
                    "published_time": "10 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/nfWlot6h_JM/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBLm7Z38XwClzD1jgnHudeca4QiZQ"
                },
                {
                    "position": 3,
                    "id": "ic8j13piAhQ",
                    "title": "Taylor Swift - Cruel Summer (Official Audio)",
                    "link": "https://www.youtube.com/watch?v=ic8j13piAhQ",
                    "views": 239,
                    "length": "3:00",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/ic8j13piAhQ/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAWjlrIUXLcz2qUTfjZ6npPsgEgfQ"
                },
                {
                    "position": 4,
                    "id": "VuNIsY6JdUw",
                    "title": "Taylor Swift - You Belong With Me",
                    "link": "https://www.youtube.com/watch?v=VuNIsY6JdUw",
                    "views": 1,
                    "length": "3:49",
                    "published_time": "15 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/VuNIsY6JdUw/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCUqnb3W7g3my-iG3b9bHga5f5tEw"
                },
                {
                    "position": 5,
                    "id": "-CmadmM5cOk",
                    "title": "Taylor Swift - Style",
                    "link": "https://www.youtube.com/watch?v=-CmadmM5cOk",
                    "views": 899,
                    "length": "4:03",
                    "published_time": "10 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/-CmadmM5cOk/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLApfBkVPfXnTRQoOCzU3pI1zshkSQ"
                },
                {
                    "position": 6,
                    "id": "tollGa3S0o8",
                    "title": "Taylor Swift - All Too Well: The Short Film",
                    "link": "https://www.youtube.com/watch?v=tollGa3S0o8",
                    "views": 106,
                    "length": "14:56",
                    "published_time": "3 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/tollGa3S0o8/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCSr_5mOyupMGVCH_cOMjtSUVlx1Q"
                },
                {
                    "position": 7,
                    "id": "u9raS7-NisU",
                    "title": "Taylor Swift - Daylight (Official Audio)",
                    "link": "https://www.youtube.com/watch?v=u9raS7-NisU",
                    "views": 79,
                    "length": "4:55",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/u9raS7-NisU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLD8e9hqmER5v0-1dcbotgd58aLZ_A"
                },
                {
                    "position": 8,
                    "id": "q3zqJs7JUCQ",
                    "title": "Taylor Swift - Fortnight (feat. Post Malone) (Official Music Video)",
                    "link": "https://www.youtube.com/watch?v=q3zqJs7JUCQ",
                    "views": 147,
                    "length": "4:10",
                    "published_time": "1 year ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/q3zqJs7JUCQ/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCZr5sANS7UvQBpGE54ziTpdHeb6Q"
                },
                {
                    "position": 9,
                    "id": "8xg3vE8Ie_E",
                    "title": "Taylor Swift - Love Story",
                    "link": "https://www.youtube.com/watch?v=8xg3vE8Ie_E",
                    "views": 783,
                    "length": "3:57",
                    "published_time": "15 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/8xg3vE8Ie_E/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLApG0nikc4sOLWpyyh3lBJEWIob6w"
                },
                {
                    "position": 10,
                    "id": "b1kbLwvqugk",
                    "title": "Taylor Swift - Anti-Hero (Official Music Video)",
                    "link": "https://www.youtube.com/watch?v=b1kbLwvqugk",
                    "views": 221,
                    "length": "5:10",
                    "published_time": "2 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/b1kbLwvqugk/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCIY21J5dABfq5C0MUx2TldipwbAg"
                },
                {
                    "position": 11,
                    "id": "-BjZmE2gtdo",
                    "title": "Taylor Swift - Lover (Official Music Video)",
                    "link": "https://www.youtube.com/watch?v=-BjZmE2gtdo",
                    "views": 320,
                    "length": "3:59",
                    "published_time": "5 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/-BjZmE2gtdo/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCpVdiuUk_8pMqZFhvwfUJsSppqSQ"
                },
                {
                    "position": 12,
                    "id": "aXzVF3XeS8M",
                    "title": "Taylor Swift - Love Story (Taylor’s Version) [Official Lyric Video]",
                    "link": "https://www.youtube.com/watch?v=aXzVF3XeS8M",
                    "views": 54,
                    "length": "4:01",
                    "published_time": "4 years ago",
                    "badges": [],
                    "thumbnail": "https://i.ytimg.com/vi/aXzVF3XeS8M/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB0wrIVCKvNe70OKtWLKwR68C1JXQ"
                }
            ]
        }
    ],
    "shorts_sections": [
        {
            "section_title": "Shorts",
            "videos": [
                {
                    "position": 1,
                    "id": "shorts-shelf-item-g_meC49cN5k",
                    "title": "Back in the office… 😎 #MiamiTSTheErasTour, 1.7 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-g_meC49cN5k",
                    "views": 1700000,
                    "thumbnail": "https://i.ytimg.com/vi/g_meC49cN5k/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLBXSOMIn_DVPiP_kMHvdkL2EUmqZg"
                },
                {
                    "position": 2,
                    "id": "shorts-shelf-item-yj1_GJiJovg",
                    "title": "October 15, 2024, 1.2 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-yj1_GJiJovg",
                    "views": 1200000,
                    "thumbnail": "https://i.ytimg.com/vi/yj1_GJiJovg/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLC5qqo8A0BKafiGIcjGOAF8OXoZtg"
                },
                {
                    "position": 3,
                    "id": "shorts-shelf-item-VCTze4UuC9g",
                    "title": "✨ NOW PLAYING ✨ The “I Can Do It With A Broken Heart” Music Video 🤍, 3.4 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-VCTze4UuC9g",
                    "views": 3400000,
                    "thumbnail": "https://i.ytimg.com/vi/VCTze4UuC9g/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLBRN2klVm2J3ZoPwafwtEZcSOe-lw"
                },
                {
                    "position": 4,
                    "id": "shorts-shelf-item-ZwlBxvnH-So",
                    "title": "A fortnight since TTPD 🤍 brought to you by YouTube Shorts #ForAFortnightChallenge, 31 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-ZwlBxvnH-So",
                    "views": 31000000,
                    "thumbnail": "https://i.ytimg.com/vi/ZwlBxvnH-So/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLAp9d5VfjD5C9A1AJLNt2On5r8XMA"
                },
                {
                    "position": 5,
                    "id": "shorts-shelf-item-F0TUVujmtxY",
                    "title": "A fortnight til Paris 🤍 Brought to you by YouTube Shorts #ForAFortnightChallenge, 35 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-F0TUVujmtxY",
                    "views": 35000000,
                    "thumbnail": "https://i.ytimg.com/vi/F0TUVujmtxY/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLCRYtQ6Vxx2jY4B8TEa93c1-RjhtQ"
                },
                {
                    "position": 6,
                    "id": "shorts-shelf-item-AtDCWnV_Vzo",
                    "title": "A fortnight making TTPD 🤍 Brought to you by YouTube Shorts #ForAFortnightChallenge, 35 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-AtDCWnV_Vzo",
                    "views": 35000000,
                    "thumbnail": "https://i.ytimg.com/vi/AtDCWnV_Vzo/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLC-UX7ObbZN3GE6cIfSZSrpqiWpUg"
                },
                {
                    "position": 7,
                    "id": "shorts-shelf-item-2hBLC7E8v3A",
                    "title": "Share your “fortnight” recap with #ForAFortnightChallenge 🤍 brought to you by YouTube Shorts, 123 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-2hBLC7E8v3A",
                    "views": 123000000,
                    "thumbnail": "https://i.ytimg.com/vi/2hBLC7E8v3A/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLDhK18wBC77YPmFipi4NMk1jJq1zQ"
                },
                {
                    "position": 8,
                    "id": "shorts-shelf-item-GhXsnvmUQrg",
                    "title": "Entering the Phantom Clear TTPD vinyl into evidence. Available exclusively at Target now, 1.8 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-GhXsnvmUQrg",
                    "views": 1800000,
                    "thumbnail": "https://i.ytimg.com/vi/GhXsnvmUQrg/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLAlpWh4CNAdnG__TRMpZ5Wva0cktA"
                },
                {
                    "position": 9,
                    "id": "shorts-shelf-item-QBllgPHa8aQ",
                    "title": "A message for the department 🤍#ForAFortnightChallenge coming soon to YouTube Shorts, 1.5 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-QBllgPHa8aQ",
                    "views": 1500000,
                    "thumbnail": "https://i.ytimg.com/vi/QBllgPHa8aQ/oar2.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLAuLDxi7wuAEWO4zGbAkGcSM5z-Yw"
                },
                {
                    "position": 10,
                    "id": "shorts-shelf-item-7yRXgL7SaV0",
                    "title": "Album tonight. Fortnight music video tomorrow at 8pm et., 2.8 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-7yRXgL7SaV0",
                    "views": 2800000,
                    "thumbnail": "https://i.ytimg.com/vi/7yRXgL7SaV0/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLB7flOk__uDPlhPBsHzyK7dcRNZuQ"
                },
                {
                    "position": 11,
                    "id": "shorts-shelf-item-RlDSGLHcZy0",
                    "title": "The TTPD Timetable, 1.6 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-RlDSGLHcZy0",
                    "views": 1600000,
                    "thumbnail": "https://i.ytimg.com/vi/RlDSGLHcZy0/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLBft0_BCZa13is9uiL2oLOQXZ5FZA"
                },
                {
                    "position": 12,
                    "id": "shorts-shelf-item-ilkvTXfv2TY",
                    "title": "accidentally going clubbing with your parents is something everyone should try at least once, 3.5 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-ilkvTXfv2TY",
                    "views": 3500000,
                    "thumbnail": "https://i.ytimg.com/vi/ilkvTXfv2TY/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLAqDm-oeBh9hIpgr6AkP9X01ou5CQ"
                },
                {
                    "position": 13,
                    "id": "shorts-shelf-item-zz9YgUoisOA",
                    "title": "Rent on demand starting … you guessed it, December 13 🫶💋, 4.3 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-zz9YgUoisOA",
                    "views": 4300000,
                    "thumbnail": "https://i.ytimg.com/vi/zz9YgUoisOA/oardefault.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLBqmkMlLQSyQGrMbQANrcC_PyXQ1A"
                },
                {
                    "position": 14,
                    "id": "shorts-shelf-item-vaRGgiGfsw4",
                    "title": "✨🫶 My name is Taylor and I was born in 1989 🫶✨, 3 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-vaRGgiGfsw4",
                    "views": 3000000,
                    "thumbnail": "https://i.ytimg.com/vi/vaRGgiGfsw4/hq720.jpg?sqp=-oaymwEdCJUDENAFSFXyq4qpAw8IARUAAIhCcAHAAQbQAQE=&rs=AOn4CLC-nStriNU_Vh7ezuIpb_uNgKIYuQ"
                },
                {
                    "position": 15,
                    "id": "shorts-shelf-item-KzNLM4nmRak",
                    "title": "The Eras Tour concert film is now officially coming to theaters WORLDWIDE on Oct 13! 🩵, 2.4 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-KzNLM4nmRak",
                    "views": 2400000,
                    "thumbnail": "https://i.ytimg.com/vi/KzNLM4nmRak/hq720.jpg?sqp=-oaymwEdCJUDENAFSFXyq4qpAw8IARUAAIhCcAHAAQbQAQE=&rs=AOn4CLDHI8BQt1_D_CkBRyN6rmRFsoS95Q"
                },
                {
                    "position": 16,
                    "id": "shorts-shelf-item-US0OipWyYro",
                    "title": "Thank you for making these reveals so much chaotic fun (which is the best kind of fun, after all 😜), 1.9 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-US0OipWyYro",
                    "views": 1900000,
                    "thumbnail": "https://i.ytimg.com/vi/US0OipWyYro/hq720.jpg?sqp=-oaymwEdCJUDENAFSFXyq4qpAw8IARUAAIhCcAHAAQbQAQE=&rs=AOn4CLC0T9EhoemfM21_3BSH6vBY4l7sdw"
                },
                {
                    "position": 17,
                    "id": "shorts-shelf-item-0FZULHCZKBc",
                    "title": "Pre order 1989 (Taylor’s Version) now on my site 🩵😎🩵, 2.4 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-0FZULHCZKBc",
                    "views": 2400000,
                    "thumbnail": "https://i.ytimg.com/vi/0FZULHCZKBc/oar2.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLBw3vuLz5NYM9K1UqI2YYYxj-lIUA"
                },
                {
                    "position": 18,
                    "id": "shorts-shelf-item-okPrv0o_7GQ",
                    "title": "Summer forecast: Cruel. 😎, 5.7 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-okPrv0o_7GQ",
                    "views": 5700000,
                    "thumbnail": "https://i.ytimg.com/vi/okPrv0o_7GQ/hq720.jpg?sqp=-oaymwEdCJUDENAFSFXyq4qpAw8IARUAAIhCcAHAAQbQAQE=&rs=AOn4CLDXFCv6O5OgUb7wc2j2QkslKfIdAA"
                },
                {
                    "position": 19,
                    "id": "shorts-shelf-item-yJTfs8YS2w0",
                    "title": "13 days til we return Speak Now to its mother 😝, 9.2 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-yJTfs8YS2w0",
                    "views": 9200000,
                    "thumbnail": "https://i.ytimg.com/vi/yJTfs8YS2w0/oar2.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLBVBwedmdflD_FW9BB2xGBjYgrt3g"
                },
                {
                    "position": 20,
                    "id": "shorts-shelf-item-YvyeAwoZ76w",
                    "title": "It fills me with such pride & joy to announce that my version of Speak Now will be out July 7 💜💜💜, 1.2 million views - play Short",
                    "link": "https://www.youtube.com/shorts/shorts-shelf-item-YvyeAwoZ76w",
                    "views": 1200000,
                    "thumbnail": "https://i.ytimg.com/vi/YvyeAwoZ76w/oar2.jpg?sqp=-oaymwEdCJUDENAFSFWQAgHyq4qpAwwIARUAAIhCcAHAAQY=&rs=AOn4CLC7BL3iQnuo2ue0n_-j64fQKmO-OA"
                }
            ]
        }
    ]
}
```


---

# 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://docs.scrapingdog.com/youtube-scraper-api/youtube-channel-api.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.
