Scrapingdog
HomePricingSupportLogin
  • Documentation
  • Web Scraping API
    • Request Customization
      • Javascript Rendering
        • Wait when rendering Javascript
      • Custom Headers
      • Premium Residential Proxies
      • Geotargeting
      • Sessions
  • POST Request
  • Google Search Scraper API
    • Google Country Parameter: Supported Google Countries
    • Supported Google Countries via cr parameter
    • Google Domains Page
    • Google Language Page
    • Google LR Language Page
  • Google AI Overview API
  • Google Maps API
    • Google Maps Posts API
    • Google Maps Photos API
    • Google Maps Reviews API
    • Google Maps Places API
  • Google Trends API
    • Google Trends Autocomplete API
    • Google Trends Trending Now API
  • Google Images API
  • Google News API
    • Google News API 2.0
  • Google Shopping API
  • Google Product API
  • Google Videos API
  • Google Shorts API
  • Google Autocomplete API
  • Google Scholar API
    • Google Scholar Profiles API
    • Google Scholar Author API
      • Google Scholar Author Citation API
    • Google Scholar Cite API
  • Google Finance API
  • Google Lens API
  • Google Jobs API
  • Google Local API
  • Google Patents API
    • Google Patent Details API
  • Bing Search Scraper API
  • Amazon Scraper API
    • Amazon Product Scraper
    • Amazon Search Scraper
    • Amazon Reviews API
    • Amazon Autocomplete Scraper
  • Instagram Scraper API
  • Linkedin Scraper API
    • Person Profile Scraper
    • Company Profile Scraper
  • Linkedin Jobs Scraper
    • Scrape Linkedin Jobs
    • Scrape LinkedIn Job Overview
  • Yelp Scraper API
  • Indeed Scraper API
  • Zillow Scraper API
  • X Scraper API
  • Youtube Scraper API
    • Youtube Search API
    • YouTube Transcripts API
    • YouTube Channel API
    • YouTube Comment API
  • Walmart Scraper API
    • Walmart Product Scraper
    • Walmart Search Scraper
    • Walmart Reviews Scraper
  • Screenshot API
  • Webhook Integration
  • Datacenter Proxies
  • Account API
Powered by GitBook
On this page
  • Parameters
  • API Example
  • API Response
  1. Youtube Scraper API

YouTube Comment API

Using the YouTube Comments API, you can scrape YouTube comments results without worrying about proxy rotation and data parsing. Our API is fast and reliable.

Each successful request to this API will cost 5 credits.

Parameters

Scrapingdog Parameters

Parameters
Description

api_key required

Your personal API key. Available on your dashboard. Type: String

Geographic Location and Localization

Parameters
Description

country

language

Language of the results. Possible Values - en, es, fr, de, etc. Default Value - en Type - String

Pagination

next_page_token

ParamThe parametereter defines the next page token. It is used for retrieving the next page results of comments or replies. Type - String

API Example

cURL "https://api.scrapingdog.com/youtube/comments?api_key=APIKEY&v=0e3GPea1Tyg"
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}")
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);
  });
<?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);
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
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();
        }
    }
}

API Response

{
    "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": "1M",
            "replies": "729",
            "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": "553K",
            "replies": "656",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3RGhGTlRDYmZjazVhcHVVSjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dEaEZOVENiZmNrNWFwdVVKNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgzS6ohzUVAUTlIJuC14AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgzS6ohzUVAUTlIJuC14AaABAg",
            "channel": {
                "id": "UCUUq5AxS5fULXnEdUMaz_KA",
                "handle": "@Jabroney",
                "link": "https://www.youtube.com/@Jabroney",
                "thumbnail": "https://yt3.ggpht.com/OG_n5JsXd38Ti1ad9TbMsOENWGC2uRLSWcSeG5d20GvSuABL_WLOAZhsD00rXqbwuzsatNZg=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "Jimmy this is incredible. At this point you should take the next logical step and establish a movie/ tv production company- you’ve pretty much already created one from scratch. I would love to see how you could shake up that industry",
            "likes": "202K",
            "replies": "389",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd6UzZvaHpVVkFVVGxJSnVDMTRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pTNm9oelVWQVVUbElKdUMxNEFhQUJBZw%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": "439K",
            "replies": "372",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd5R2ZERGx0Q3RyX0pPM3g4OTRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3lHZkREbHRDdHJfSk8zeDg5NEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "Ugwpqa7TjL01NNmfqIh4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=Ugwpqa7TjL01NNmfqIh4AaABAg",
            "channel": {
                "id": "UCg0kqKYY72OmzYg3JE3bdDA",
                "handle": "@ChaoticMeatballTV",
                "link": "https://www.youtube.com/@ChaoticMeatballTV",
                "thumbnail": "https://yt3.ggpht.com/ytc/AIdro_l0UTSVZUCuJ9gL-zCm_vbiQtGTR2LZlqyworBVpGReoq4=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "This is indeed one of the craziest videos I've seen in my life, you guys made a fantastic production and I'd love to see you guys do this sort of thing again!",
            "likes": "1.4K",
            "replies": "9",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3cHFhN1RqTDAxTk5tZnFJaDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dwcWE3VGpMMDFOTm1mcUloNEFhQUJBZw%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": "37K",
            "replies": "101",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3S2lMZTBhQlZyZ2ZGclU4WjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dLaUxlMGFCVnJnZkZyVThaNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgxXjBOti_COfaepvkh4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgxXjBOti_COfaepvkh4AaABAg",
            "channel": {
                "id": "UC-MFmneeEHowMuRCUsE_s0w",
                "handle": "@JackTheBus",
                "link": "https://www.youtube.com/@JackTheBus",
                "thumbnail": "https://yt3.ggpht.com/ROm-JXvZovWoWa695XrEehU2xcVFawpFO0oyvUxDMkWZ_azCICaS3ts_nOhFAlYkbO4u8VNIFI0=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "\"do you promise to remember me\" a tear was shed",
            "likes": "770",
            "replies": "15",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4WGpCT3RpX0NPZmFlcHZraDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3hYakJPdGlfQ09mYWVwdmtoNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgzKMXLoU9p9PrwynSl4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgzKMXLoU9p9PrwynSl4AaABAg",
            "channel": {
                "id": "UCoUIh-kzt-q81e4Ptr75xNA",
                "handle": "@SaschaWrage",
                "link": "https://www.youtube.com/@SaschaWrage",
                "thumbnail": "https://yt3.ggpht.com/dif5--FlDRHNegbeXDCY9JtAKP3ivDLs6QDzdUyRY5dOjaI3F2Hr2sEyKmBQIJBxm7gzGViX2w=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "7 days ago",
            "text": "Congrats on 800 million views",
            "likes": "152",
            "replies": "4",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd6S01YTG9VOXA5UHJ3eW5TbDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pLTVhMb1U5cDlQcnd5blNsNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgxpKTixKqdiGO2-XIR4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgxpKTixKqdiGO2-XIR4AaABAg",
            "channel": {
                "id": "UCOMrUmOTPD_AnSivjxptxpA",
                "handle": "@Weisz",
                "link": "https://www.youtube.com/@Weisz",
                "thumbnail": "https://yt3.ggpht.com/ytc/AIdro_llLf2L-3kiVu-AFin_0uG5eQ9H6lCw2vc0eLKLc4kD4ZU=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago (edited)",
            "text": "Production value on this is absolutely mental! Great work!",
            "likes": "12K",
            "replies": "29",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4cEtUaXhLcWRpR08yLVhJUjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3hwS1RpeEtxZGlHTzItWElSNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "Ugwq-ibH7m-hEOl34cN4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=Ugwq-ibH7m-hEOl34cN4AaABAg",
            "channel": {
                "id": "UCoQy7bIaDkPOszLEbJsWTtw",
                "handle": "@ONE_shot_GURL",
                "link": "https://www.youtube.com/@ONE_shot_GURL",
                "thumbnail": "https://yt3.ggpht.com/GhO1P_sPPo7KiHSOJ-lHJUfot13qCzd3HNRh_6vl5r5CVRW1p2PcZsPnw0EtJoc4W04aA1o6SA=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "The sets were so well done!",
            "likes": "4.3K",
            "replies": "18",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3cS1pYkg3bS1oRU9sMzRjTjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dxLWliSDdtLWhFT2wzNGNONEFhQUJBZw%3D%3D"
        },
        {
            "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": "4.9K",
            "replies": "27",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd6QlJmS2t5UEsybktBekc5UjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pCUmZLa3lQSzJuS0F6RzlSNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgxzEXCeKnMJluMheQR4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgxzEXCeKnMJluMheQR4AaABAg",
            "channel": {
                "id": "UC8ykFrF_szVi_-G4GI1rHww",
                "handle": "@zest_4493",
                "link": "https://www.youtube.com/@zest_4493",
                "thumbnail": "https://yt3.ggpht.com/w-fpIoAEmm18l2ZbtbwVtCpdQaHuuG8gJVXUMi7f-v5F71irnxFHXjRdPIitowch7Pl0mcys0g=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "6 days ago",
            "text": "Let's get this to 1B!",
            "likes": "44",
            "replies": "2",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4ekVYQ2VLbk1KbHVNaGVRUjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3h6RVhDZUtuTUpsdU1oZVFSNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgwYD3n4MoH0YipqLvd4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgwYD3n4MoH0YipqLvd4AaABAg",
            "channel": {
                "id": "UCQ7E51aJtsMZOIH7CnZpUzQ",
                "handle": "@JakeTheVikingFranklin",
                "link": "https://www.youtube.com/@JakeTheVikingFranklin",
                "thumbnail": "https://yt3.ggpht.com/nc7Gp_Udx7IcuYiw_s2z0108DRttiJc4pqMOiGNcvdZtm-cHCsWZhz1w2qxHOTxVntzn0eLZTg=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "This was insane!! Congrats to homie who won! GGs!",
            "likes": "5.9K",
            "replies": "54",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3WUQzbjRNb0gwWWlwcUx2ZDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dZRDNuNE1vSDBZaXBxTHZkNEFhQUJBZw%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": "199",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3U1I0WFBpRndmSE5RQW9FZDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dTUjRYUGlGd2ZITlFBb0VkNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgwZyzNYBM0pcd1zfjZ4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgwZyzNYBM0pcd1zfjZ4AaABAg",
            "channel": {
                "id": "UCoJCJYGtrNDi3wlZIv5WYjg",
                "handle": "@SeenSven",
                "link": "https://www.youtube.com/@SeenSven",
                "thumbnail": "https://yt3.ggpht.com/ytc/AIdro_lXLJWE9g8Of_qCk2wXDaq9kceCOCFeZDDTUTc253mSMQ=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "Imagine what he could have done if he decided to become evil all of a sudden...",
            "likes": "1K",
            "replies": "10",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3Wnl6TllCTTBwY2QxemZqWjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3daeXpOWUJNMHBjZDF6ZmpaNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "Ugzn4hXFO1DPd6F5GXh4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=Ugzn4hXFO1DPd6F5GXh4AaABAg",
            "channel": {
                "id": "UCpk734CDl5C6IEXbwtbyXQw",
                "handle": "@XxcocostarxX",
                "link": "https://www.youtube.com/@XxcocostarxX",
                "thumbnail": "https://yt3.ggpht.com/LWx7y-Oc9Pp06ePxHzfiStyU_PaPtqmMcGuYRzjvkxlqlorQ8GRLsHR6WKc6ORON8yrI8Ik7=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "6 days ago",
            "text": "We need season 2 games now! 😁",
            "likes": "32",
            "replies": "2",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd6bjRoWEZPMURQZDZGNUdYaDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3puNGhYRk8xRFBkNkY1R1hoNEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgxHLQQ-9uqUXQABNwd4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgxHLQQ-9uqUXQABNwd4AaABAg",
            "channel": {
                "id": "UChmRmoXdfOPu1JUPTi4adNQ",
                "handle": "@FavoriteTechX",
                "link": "https://www.youtube.com/@FavoriteTechX",
                "thumbnail": "https://yt3.ggpht.com/gODUrkyUERRs6chKKoplKiocDNtgQkmPtPwlH8RiEXqN_ScQiIt2y16Zy7WGuvmNZwCFRUp9Pcw=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "3 years ago",
            "text": "Admire his efforts 🙏🏽",
            "likes": "1K",
            "replies": "8",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4SExRUS05dXFVWFFBQk53ZDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3hITFFRLTl1cVVYUUFCTndkNEFhQUJBZw%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.4K",
            "replies": "20",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd5d2dUNlBHN3loTzVmQWk4VjRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3l3Z1Q2UEc3eWhPNWZBaThWNEFhQUJBZw%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": "6K",
            "replies": "24",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd4bEhscmZySFYxLWVtQ011NTRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3hsSGxyZnJIVjEtZW1DTXU1NEFhQUJBZw%3D%3D"
        },
        {
            "comment_id": "UgwsP9vLoaZM3C1472x4AaABAg",
            "link": "https://www.youtube.com/watch?v=0e3GPea1Tyg&lc=UgwsP9vLoaZM3C1472x4AaABAg",
            "channel": {
                "id": "UCbS1rhOKOb8ql8jlW2KZs6A",
                "handle": "@RobinSwiftie.13",
                "link": "https://www.youtube.com/@RobinSwiftie.13",
                "thumbnail": "https://yt3.ggpht.com/X5A2I264nS_PjMCna8pHPaCt0X77PtQ2hOeEpSgZsMFFoxONbKbarm81cgcOE6Ktja6yVTFidac=s88-c-k-c0x00ffffff-no-rj"
            },
            "published_date": "8 days ago",
            "text": "So close to 800M",
            "likes": "88",
            "replies": "13",
            "next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYygwEaUBIaVWd3c1A5dkxvYVpNM0MxNDcyeDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyCzBlM0dQZWExVHlnQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dzUDl2TG9hWk0zQzE0NzJ4NEFhQUJBZw%3D%3D"
        }
    ],
    "pagination": {
        "replies_next_page_token": "Eg0SCzBlM0dQZWExVHlnGAYy3gIKtAJnZXRfcmFua2VkX3N0cmVhbXMtLUNxVUJDSUFFRlJlMzBUZ2FtZ0VLbFFFSTJGOFFnQVFZQnlLS0Fadm5yTm1KbUFLei1YS01YUF92QUllTkFEdHNLVFMtRmJPTEhXQkNnWk9zbGFfWW5oY2NNN1JxVlFqV1I2WUNXMHhUNnlkUW10YVU4aUVxN29XQ3hOQWd3dEZJdVVVWWR5MWFscTE1ek80UHIweXFRMU9oMGZjVkgyaWREQ2JBN3RnTDNVdFdoSm4wY0dnanpmRGFNU09zWllNVHhBWGYwNVdsRmVpUi01MnJBaGxoSW1Vb294cDlIaEFVRWdVSWlTQVlBQklGQ0tnZ0dBQVNCd2lISUJBQkdBQVNCUWlJSUJnQUVnY0loQ0FRRHhnQkVnY0loU0FRQkJnQiIRIgswZTNHUGVhMVR5ZzAAeAEoFEIQY29tbWVudHMtc2VjdGlvbg%3D%3D"
    }
}
PreviousYouTube Channel APINextWalmart Scraper API

Last updated 1 day ago

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 . Default Value - us Type - String

Google countries page