# YouTube Comment API

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

### Parameters

#### Scrapingdog Parameters

| Parameters                                                      | 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> |

#### Search Query

| Parameter                                                | Description                                                    |
| -------------------------------------------------------- | -------------------------------------------------------------- |
| <p>v<br><br><mark style="color:red;">required</mark></p> | <p>Video ID.<br><br>Type: <em><strong>String</strong></em></p> |

#### Geographic Location and Localization

| Parameters | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| country    | <p>This parameter specifies the country for the Google search using a two-letter country code (e.g., US for the United States, UK for the United Kingdom, or FR for France). For a complete list of supported countries, visit the <a href="https://docs.scrapingdog.com/google-search-scraper-api/google-country-parameter-supported-google-countries">Google countries page</a>. <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><h4 id="api-example"><br></h4>                                                                                                                                                                                         |

#### Pagination

|                   |                                                                                                                                                                 |
| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| next\_page\_token | <p>The parameter defines the next page token. It is used for retrieving the next page results of comments or replies.<br><br>Type - <strong>String</strong></p> |

### API Example

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

```bash
cURL "https://api.scrapingdog.com/youtube/comments?api_key=APIKEY&v=0e3GPea1Tyg"
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

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

params = {
    "api_key": api_key,
    "v": "0e3GPea1Tyg"
}

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/comments/';

const params = {
  api_key: api_key,
  v: '0e3GPea1Tyg'
};

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';
$v = '0e3GPea1Tyg';

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

// 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'
v = '0e3GPea1Tyg'

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

# 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 v = "0e3GPea1Tyg";

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

            // 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
{
    "total_comments": 634863,
    "comments": [
        {
            "comment_id": "UgzH8vliQSJKHQMGZjx4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgzH8vliQSJKHQMGZjx4AaABAg",
            "channel": {
                "id": "UCX6OQ3DkcsbYNE6H8uQQuVA",
                "handle": "@MrBeast",
                "link": "https://www.youtube.com/@MrBeast",
                "thumbnail": "https://yt3.ggpht.com/nxYrc_1_2f77DoBadyxMTmv7ZpRZapHR5jbuYe7PlPd5cIRJxtNNEYyOC0ZsxaDyJJzXrnJiuDE=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "Like I said in the video, subscribe if you haven’t already and you could win $10,000!",
            "likes": "1.1M",
            "replies": "711",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd6SDh2bGlRU0pLSFFNR1pqeDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQABICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pIOHZsaVFTSktIUU1HWmp4NEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgwDhFNTCbfck5apuUJ4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgwDhFNTCbfck5apuUJ4AaABAg",
            "channel": {
                "id": "UCnVimh35ecf46P_Bt-2AArg",
                "handle": "@DoodleChaos",
                "link": "https://www.youtube.com/@DoodleChaos",
                "thumbnail": "https://yt3.ggpht.com/ytc/AIdro_luPgVjRv0QRKfNIssTr6Tb21b7UvM84AQEc_nkrB9ZqLI=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "Huge props to the set designers, everything was spot on!",
            "likes": "562K",
            "replies": "684",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3RGhGTlRDYmZjazVhcHVVSjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dEaEZOVENiZmNrNWFwdVVKNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgyGfDDltCtr_JO3x894AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgyGfDDltCtr_JO3x894AaABAg",
            "channel": {
                "id": "UCvK4bOhULCpmLabd2pDMtnA",
                "handle": "@YesTheory",
                "link": "https://www.youtube.com/@YesTheory",
                "thumbnail": "https://yt3.ggpht.com/bdI_oMvgn9Ib9rwv89h89Xd5TcOh2K2DEgzsJdi1dfzXPXLXj2ARFTGzs9oOu_xQLHsCjj2E=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "This is insanity, never done before in the history of this platform. Hats off to you Jimmy 👏",
            "likes": "443K",
            "replies": "378",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd5R2ZERGx0Q3RyX0pPM3g4OTRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3lHZkREbHRDdHJfSk8zeDg5NEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgxxbYLzoN7DXcyd3kd4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgxxbYLzoN7DXcyd3kd4AaABAg",
            "channel": {
                "id": "UCstXBiNprDDg9HoslxaZjXQ",
                "handle": "@Seeks_stuff",
                "link": "https://www.youtube.com/@Seeks_stuff",
                "thumbnail": "https://yt3.ggpht.com/sGx1hilt7-pef872qU5GlDswfpGwKcnLwAVSlZT_b8M07bXzMpp5IBStUR5BveUM8H_US-PN=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "I remember how people were joking about Jimmy doing this irl, and now here he is. The madlad did it, and did it in the best fricking way possible",
            "likes": "19K",
            "replies": "70",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4eGJZTHpvTjdEWGN5ZDNrZDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3h4YllMem9ON0RYY3lkM2tkNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "Ugyf_VbL1BYle04r83N4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=Ugyf_VbL1BYle04r83N4AaABAg",
            "channel": {
                "id": "UCFypXQe3jgp8H-MMueInojg",
                "handle": "@JakeKauth",
                "link": "https://www.youtube.com/@JakeKauth",
                "thumbnail": "https://yt3.ggpht.com/ytc/AIdro_kjUVrqCB6UWF75gLzU932nE3hFxWgq9DnF2J5ZgTdjAIb7ONkpz4bBRKOhrX02vgoUJA=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "4 weeks ago",
            "text": "You should make season 2 and 3 now",
            "likes": "448",
            "replies": "18",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd5Zl9WYkwxQllsZTA0cjgzTjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3lmX1ZiTDFCWWxlMDRyODNONEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgzHuuGzlkbpW0NOxkx4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgzHuuGzlkbpW0NOxkx4AaABAg",
            "channel": {
                "id": "UCH9uXy46sHi5ltU0bQp5asQ",
                "handle": "@Guiny",
                "link": "https://www.youtube.com/@Guiny",
                "thumbnail": "https://yt3.ggpht.com/02m_xCSuWIQb3NLwHNM_GMDEoS0p4UQsBBm8JC98yGMYFU0ZuCG7zUIZ27cvoDEtsuAKJzo4=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "I can't get over how insanely close the set is to the real thing its literally perfect",
            "likes": "25K",
            "replies": "59",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd6SHV1R3psa2JwVzBOT3hreDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pIdXVHemxrYnBXME5PeGt4NEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgwKiLe0aBVrgfFrU8Z4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgwKiLe0aBVrgfFrU8Z4AaABAg",
            "channel": {
                "id": "UCZKPFH0QHw4YCXc8ViDTJbA",
                "handle": "@OcAirsoft",
                "link": "https://www.youtube.com/@OcAirsoft",
                "thumbnail": "https://yt3.ggpht.com/ytc/AIdro_kBtAgWp75XsCsKuDlQmC31bl_WGSagWekEBjbaypMUUHM=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "Dang they actually put a ton of effort into this. Definitely worth the hype!",
            "likes": "39K",
            "replies": "106",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3S2lMZTBhQlZyZ2ZGclU4WjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dLaUxlMGFCVnJnZkZyVThaNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgwSR4XPiFwfHNQAoEd4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgwSR4XPiFwfHNQAoEd4AaABAg",
            "channel": {
                "id": "UChsnTsUtT_gPdlSEsLsMbCQ",
                "handle": "@lumidotexe",
                "link": "https://www.youtube.com/@lumidotexe",
                "thumbnail": "https://yt3.ggpht.com/HKyyHT8qMq6xRM67_zt_C7NezF_ne3v_c8iNIlA3WcHEoAjlTK5FR-ehsNzwEPJ_APGUU9nhqQ=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "Incredible job putting this together, Jimmy! So much work and detail went into making this happen 🤩",
            "likes": "83K",
            "replies": "202",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3U1I0WFBpRndmSE5RQW9FZDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dTUjRYUGlGd2ZITlFBb0VkNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgxX9didXx9a0VVUBCx4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgxX9didXx9a0VVUBCx4AaABAg",
            "channel": {
                "id": "UC6TWjKUL6bdOUxc4FPAKyrg",
                "handle": "@PopcatHub-ws8mq",
                "link": "https://www.youtube.com/@PopcatHub-ws8mq",
                "thumbnail": "https://yt3.ggpht.com/IERRyjFn7tcB0KQdL90lFHclvKoJxTz0iGPns1h5r1ju94ij8vZYfYX_jXmvPp1PnXadRwzC=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "2 weeks ago",
            "text": "This is actually crazy knowing almost 1 billion ppl watched this video",
            "likes": "37",
            "replies": "1",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4WDlkaWRYeDlhMFZWVUJDeDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3hYOWRpZFh4OWEwVlZVQkN4NEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "Ugya8sWUBZ0DDbeBiNF4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=Ugya8sWUBZ0DDbeBiNF4AaABAg",
            "channel": {
                "id": "UCFs06vpDUcYq4ingSFMHsjA",
                "handle": "@stzplanet",
                "link": "https://www.youtube.com/@stzplanet",
                "thumbnail": "https://yt3.ggpht.com/DBRQdKLTfFDCofgZTAlqHuDtXYGGgZWl8iRULcF661g-0mpKqanhTMrxMzDV0gtqotev2q3oSA=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "That one guy: \"I should've taken that 4 grand\"\r\n\r\nMe: I feel that man.",
            "likes": "1.5K",
            "replies": "4",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd5YThzV1VCWjBERGJlQmlORjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3lhOHNXVUJaMEREYmVCaU5GNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgxlHlrfrHV1-emCMu54AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgxlHlrfrHV1-emCMu54AaABAg",
            "channel": {
                "id": "UCIT_zL2d2cWgnm7Sf3J4xmw",
                "handle": "@Tenzi_",
                "link": "https://www.youtube.com/@Tenzi_",
                "thumbnail": "https://yt3.ggpht.com/ejL_ic06AEYgUWjMR6nMxElRft9ift8xjCQ4pga49V4JSu3r8I4LkyIsxngti-CF0vzV0sNI144=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "wow days later and still can’t take in how fascinating this was",
            "likes": "6.4K",
            "replies": "24",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4bEhscmZySFYxLWVtQ011NTRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3hsSGxyZnJIVjEtZW1DTXU1NEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgywgT6PG7yhO5fAi8V4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgywgT6PG7yhO5fAi8V4AaABAg",
            "channel": {
                "id": "UCZDC1NwOEX3DclqBwVUmsTw",
                "handle": "@Ertyez",
                "link": "https://www.youtube.com/@Ertyez",
                "thumbnail": "https://yt3.ggpht.com/QLuOcXcsv2FedjuZMInTnyZtqBr2Yw9x1-6UJd7EnnCXRYLDwqOOrljxyBTH2ZPxTtnp_oK00A=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "No words how incredible the set was! Good game, literally.",
            "likes": "5.8K",
            "replies": "19",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd5d2dUNlBHN3loTzVmQWk4VjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3l3Z1Q2UEc3eWhPNWZBaThWNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgwBpBt2QUQEIsW_OZ14AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgwBpBt2QUQEIsW_OZ14AaABAg",
            "channel": {
                "id": "UCHbBgBFI1KCEpjcigDblaUg",
                "handle": "@timplayground999",
                "link": "https://www.youtube.com/@timplayground999",
                "thumbnail": "https://yt3.ggpht.com/GujEQuTVl8rRaEqK73fvuKM8wg_8woEL_Bx3oLnk_ciUxHxCIR245BwEHusJkRRi4xOv6KNg=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "4 weeks ago",
            "text": "The video is amazing. :face-red-heart-shape::face-red-heart-shape:",
            "likes": "11",
            "replies": 0
        },
        {
            "comment_id": "UgzBRfKkyPK2nKAzG9R4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgzBRfKkyPK2nKAzG9R4AaABAg",
            "channel": {
                "id": "UCdDLjPgXkYM8cAf5eDSwvyA",
                "handle": "@MKPStudios",
                "link": "https://www.youtube.com/@MKPStudios",
                "thumbnail": "https://yt3.ggpht.com/P6Ng3BC99_3Vwf8NEtuKSLIKxiG84qzbrVolfBq5pZkPQMEUYCpF0pD1Cr3Dw1xNRyurVbSpGAY=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "I’m so beyond proud of what MrBeast has become ❤️",
            "likes": "5.2K",
            "replies": "27",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd6QlJmS2t5UEsybktBekc5UjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pCUmZLa3lQSzJuS0F6RzlSNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgwSxUtFGuR-OopS8mh4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgwSxUtFGuR-OopS8mh4AaABAg",
            "channel": {
                "id": "UCQwFuQLnLocj5F7ZcmcuWYQ",
                "handle": "@MetaBallStudios",
                "link": "https://www.youtube.com/@MetaBallStudios",
                "thumbnail": "https://yt3.ggpht.com/lHe4Z3b4OgQAP1-rrxvcUxSdJonG7u0IKjmMdyVVeqvRzPTeSvo_0rphcgjquzSUuUpqqgEQ=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "wow Incredible production, these people have no limits",
            "likes": "3.3K",
            "replies": "17",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3U3hVdEZHdVItT29wUzhtaDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dTeFV0Rkd1Ui1Pb3BTOG1oNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgxxKcA6Szi7ydk4jwl4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgxxKcA6Szi7ydk4jwl4AaABAg",
            "channel": {
                "id": "UCT8zEoYJtcaPAU727D4d2bQ",
                "handle": "@temp6t",
                "link": "https://www.youtube.com/@temp6t",
                "thumbnail": "https://yt3.ggpht.com/ytc/AIdro_l-5SYUpL0EAYSBKFWYCRQQKnpy9V8-TSyY9RxhdEIumq4=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "It's absolutely insane to me how accurate the sets are man, well worth the wait!",
            "likes": "2.5K",
            "replies": "16",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4eEtjQTZTemk3eWRrNGp3bDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3h4S2NBNlN6aTd5ZGs0andsNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "Ugxsja4CM5hlW9AS_Cp4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=Ugxsja4CM5hlW9AS_Cp4AaABAg",
            "channel": {
                "id": "UCt4Qhx9A_wrzUjx7u2mYJQg",
                "handle": "@Amorphusgaming",
                "link": "https://www.youtube.com/@Amorphusgaming",
                "thumbnail": "https://yt3.ggpht.com/S_qLES0EliJFEkP9wICqVlZQwdZ35g1fFohIGunwhXQ5Vq5CCKWiaoMO8_K5c1Z2DATM9AqeuQ=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "4 weeks ago",
            "text": "make this egg famous 🥚",
            "likes": "161",
            "replies": "16",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4c2phNENNNWhsVzlBU19DcDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3hzamE0Q001aGxXOUFTX0NwNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgzR1j5Oou9MqyJCsS14AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgzR1j5Oou9MqyJCsS14AaABAg",
            "channel": {
                "id": "UCCmBwQY_SYolI7FJleKdrwg",
                "handle": "@Capsman34officiel",
                "link": "https://www.youtube.com/@Capsman34officiel",
                "thumbnail": "https://yt3.ggpht.com/ytc/AIdro_kHM81n07YzPcJd42N8I14NvvuEOrOFcyP9GbFMvcxyN6s=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "That was insane. Thanks for the invite!",
            "likes": "1.5K",
            "replies": "20",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd6UjFqNU9vdTlNcXlKQ3NTMTRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pSMWo1T291OU1xeUpDc1MxNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgwPngaSm49b1UKKhNh4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgwPngaSm49b1UKKhNh4AaABAg",
            "channel": {
                "id": "UC4W-MN8M1nUj1uyzr-J9hyA",
                "handle": "@ScottyHallford",
                "link": "https://www.youtube.com/@ScottyHallford",
                "thumbnail": "https://yt3.ggpht.com/0KpZefwJx88zIIYJVAHxBUje2gr3UguLAJ7JF7h25lSX1Q9RAaAqvGR_xhlYhfK6tDgVcMvfcuY=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "The set is insane, almost identical to the real show. I was really shocked. Huge props to the designers",
            "likes": "5K",
            "replies": "12",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3UG5nYVNtNDliMVVLS2hOaDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dQbmdhU200OWIxVUtLaE5oNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "Ugw6SjQg5DhWh5WdKKB4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=Ugw6SjQg5DhWh5WdKKB4AaABAg",
            "channel": {
                "id": "UC_fKWT31o0pc3Rb80YbUueQ",
                "handle": "@KinoZadlan",
                "link": "https://www.youtube.com/@KinoZadlan",
                "thumbnail": "https://yt3.ggpht.com/vlcTae5NhFbXiKE4nj8hrjvQVuT1qts_d9mrgo6FJkkxMl1yT1dRbJVVvd333zb75-ZvY2c5=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "This production design is so real",
            "likes": "935",
            "replies": "12",
            "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3NlNqUWc1RGhXaDVXZEtLQjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3c2U2pRZzVEaFdoNVdkS0tCNEFhQUJBZw%3D%3D"
        }
    ],
    "pagination": {
        "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYy4QIKtwJnZXRfcmFua2VkX3N0cmVhbXMtLUNxY0JDSUFFRlJlMzBUZ2FuQUVLbHdFSTJGOFFnQVFZQnlLTUFac1h2ZFZuQ3ZOSTZDSWs1bWM3dFduUDI2bS1LV1dCTEdmUkVPcjJ2Q1Jlek12TEREWnF5VnJ2MVBzcGtjaXdiSkF3OVliRVFZVEhZVDJKSVhQV01JSloxM0tja21FaVJjZGJCQ05Yb1otMnBaaTJXSFZkaW11d1pKa0dpcVczTzRaeGhCTUpQNk5Ib0JwVzFoUWpTaUJ4UkJKd2ZtMXNVNEtGb3kyVTQxY1ZaNEtoS21IdVV0WVlyTVFCRUJRU0JRaW9JQmdBRWdVSWlDQVlBQklIQ0ljZ0VBRVlBQklGQ0lrZ0dBQVNCd2lFSUJBUEdBRVNCd2lGSUJBRUdBRSIRIgswZTNHUGVhMVR5ZzAAeAEoFEIQY29tbWVudHMtc2VjdGlvbg%3D%3D"
    }
}
```
