YouTube Comment Scraper avatar

YouTube Comment Scraper

Pricing

from $1.70 / 1,000 comments

Go to Apify Store
YouTube Comment Scraper

YouTube Comment Scraper

Scrape comments from YouTube videos and playlists. Supports multiple video or playlist URLs, comment sorting, and a global comment limit.

Pricing

from $1.70 / 1,000 comments

Rating

0.0

(0)

Developer

Rigel Bytes

Rigel Bytes

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Extract comments from any YouTube video or playlist to power audience research, sentiment analysis, content strategy, and community management — starting at $2.50 per 1,000 comments.


What can YouTube Comment Scraper do for you?

  • Analyze audience sentiment — Extract comment text, likes, and timestamps to understand how viewers feel about any video.
  • Monitor brand mentions — Track what people are saying across your own videos or competitors' content.
  • Build content research datasets — Collect thousands of comments quickly for market research, trend spotting, or training data.
  • Manage communities at scale — Export comments into CSV, JSON, or Excel for offline review and replying workflows.
  • Support playlist-wide scanning — Provide a playlist URL and automatically expand every video in it for comment extraction.

What data can you extract?

FieldDescription
💬 textFull comment text content
👤 authorDisplay name of the commenter
🆔 commentIdUnique YouTube comment identifier
❤️ likeCountNumber of likes on the comment
isFavoritedWhether the video creator hearted the comment
🔄 isReplyWhether this is a reply to another comment
📅 publishedAtISO-8601 timestamp of when the comment was posted
🎬 videoTitleTitle of the source video
📺 videoUrlCanonical YouTube URL of the source video
👁️ videoViewCountView count of the source video at scrape time
💬 videoCommentCountTotal comment count reported on the video
📢 channelNameName of the channel that published the video

Why use this scraper?

  • 📊 Sentiment & market research — Gather real audience opinions from any topic or niche on YouTube.
  • 🔍 Competitor monitoring — Track comment trends on competitor channels to inform your content strategy.
  • 🤖 Automation-friendly — Integrate with your data pipeline via API or schedule recurring runs on Apify.
  • 📋 Playlist support — Drop in a full playlist URL and scrape comments from every video in one run.

Pricing

  • $2.50 / 1,000 comments (no discount tier)
  • $2.00 / 1,000 (Bronze — 10k+ items/month)
  • $1.80 / 1,000 (Silver — 50k+ items/month)
  • $1.70 / 1,000 (Gold — 100k+ items/month)
  • No hidden fees or limits on usage. Save more as your volume grows with Apify plan discounts.

How to use YouTube Comment Scraper

  1. Create a free Apify account at apify.com.
  2. Open the YouTube Comment Scraper page.
  3. Paste one or more YouTube video or playlist URLs into the input field.
  4. Set your comment limit (e.g. 100 per video) and choose sort order (Newest or Top).
  5. Click Start and wait for the run to complete.
  6. Download your data as JSON, CSV, or Excel from the dataset tab.

Input

FieldTypeRequiredDescription
videoUrlsstring[]✅ YesYouTube video or playlist URLs to scrape comments from. Playlist URLs are expanded automatically.
maxItemsinteger❌ No (default: 100)Maximum number of comments across all videos. Set to 0 for unlimited.
commentSortstring❌ No (default: "new")Sort order — "new" (newest first) or "top" (top comments).
maxConcurrencyinteger❌ No (default: 3)How many videos to process in parallel (1–10).
proxyConfigurationproxy❌ NoProxy settings. Defaults to Apify Residential proxies.

📝 Copy for Use:

{
"videoUrls": [
"https://www.youtube.com/watch?v=jNQXAC9IVRw"
],
"maxItems": 1000,
"commentSort": "new",
"maxConcurrency": 3,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Why Choose This Scraper?

  • Affordable: Pay only $2.50 per 1,000 comments scraped, with volume discounts at higher tiers.
  • Comprehensive: Extract 17 data fields per comment including text, likes, replies, video metadata, and more.
  • Easy to Use: No login required. Just paste a YouTube URL and start scraping in seconds.
  • Reliable: Uses residential proxies by default and handles pagination, rate limits, and playlist expansion automatically.

Output

Here is a sample of the data you can extract — each comment includes the full text, author info, engagement metrics, and video metadata:

FieldExample
text"We're so honored that the first ever YouTube video was filmed here!"
author@SanDiegoZoo
likeCount4,600,000
isFavoritedtrue
isReplyfalse
publishedAt2020-07-09T00:00:00+00:00
videoTitleMe at the zoo
videoUrlhttps://www.youtube.com/watch?v=jNQXAC9IVRw

Download your data as JSON, CSV, or Excel from the dataset tab after each run.

  • Shifter

    • Reliable residential proxies all over the world.
    • Cheap rates
    • Order Shifter Now
    • Get 10% Off any product, use coupan rigelbytes-YoBB.
  • OxyLabs

    • 100M+ Proxies
    • Fastest proxies in the market
    • Real profile, human-like Residential IPs
    • Quality assurance framework for most reliable IPs
    • Get Proxies
  • DataImpulse

Learn More About Proxies

  • Exclusive Deals: Some providers may offer special discounts or bonuses when you use our link.
  • Support Our Work: Each purchase helps us maintain and improve the tools and services we provide.
  • No Extra Cost: You pay the same price, but part of it goes to supporting our efforts.

Running via Apify Console

You can run this actor from the Apify Console by providing the necessary input parameters.

Running via API

You can trigger this actor using the Apify API, passing the required input in the request body.

API Examples

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR-APIFY-TOKEN")
run_input = {
"videoUrls": [
"https://www.youtube.com/watch?v=jNQXAC9IVRw"
],
"maxItems": 1000,
"commentSort": "new",
"maxConcurrency": 3,
"proxyConfiguration": {
"useApifyProxy": True,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}
run = client.actor("rigelbytes/youtube-comment-scraper").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR-APIFY-TOKEN' });
const runInput = {
videoUrls: [
'https://www.youtube.com/watch?v=jNQXAC9IVRw'
],
maxItems: 1000,
commentSort: 'new',
maxConcurrency: 3,
proxyConfiguration: {
useApifyProxy: true,
apifyProxyGroups: ['RESIDENTIAL']
}
};
const run = await client.actor('rigelbytes/youtube-comment-scraper').call(runInput);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

cURL

curl "https://api.apify.com/v2/acts/rigelbytes/youtube-comment-scraper/runs?token=YOUR-APIFY-TOKEN" \
-X POST \
-H "Content-Type: application/json" \
-d '{
"videoUrls": [
"https://www.youtube.com/watch?v=jNQXAC9IVRw"
],
"maxItems": 1000,
"commentSort": "new",
"maxConcurrency": 3,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}'

Detailed Data

🚀 Other Tools by Rigel Bytes

Explore 90 more scraping tools by Rigel Bytes, organized by use case:

📱 Social Media

Scrape Instagram, TikTok, LinkedIn, and more for content research and marketing intelligence.

  • Export Instagram Reels — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Facebook Ads Scraper — Extract posts, profiles, and engagement data from Facebook for content research, influencer tracking, and marketing analytics.
  • Instagram Analytics Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Comment Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Creator Stats — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Engagement Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Post Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • instagram-posts — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Profile Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Reel Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • linkedin-company-details — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Linkedin Company Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • LinkedIn Job Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • LinkedIn Profile Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Scrape Instagram Creators — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Tiktok Comment Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Creator Stats — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Engagement Rate — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • TikTok Profile Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.

🏠 Real Estate

Extract property listings, prices, and agent data from top real estate platforms.

  • Airbnb Address Finder — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Availability Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Detailed Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Images Downloader — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing Urls — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Property Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Reviews — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Bayut Scraper — Scrape property listings and market data from Bayut for market research, price monitoring, and investment analysis.
  • Boligsiden.dk Scraper — Scrape Danish real estate listings from Boligsiden.dk — for sale, sold, and rental properties with pricing, details,...
  • Daft.ie Property Scraper — Scrapes property listings from Daft.ie including residential, rental, commercial, and new homes across Ireland.
  • dubai-listing-scraper — Extract unlimited property listings from Bayut.com — the UAE's largest real estate platform. Get detailed property...
  • Export Airbnb Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Funda Netherlands Real Estate Scraper — Scrape property listings from Funda.nl — the largest real estate platform in the Netherlands. Supports buy and rent,...
  • Furnished Finder Fast — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Extract Furnished Finder Hosts — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • FurnishedFinder — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Hemnet.se Scraper - Swedish Real Estate Listings — Scrape property listings from Hemnet.se including for-sale, upcoming, and sold homes. Search by URL or location...
  • Immobiliare Italy Real Estate Scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24 — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24-scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immoweb Scraper - Belgium Property Listings — Scrapes property listings from Immoweb.be. Supports search result extraction with optional property detail enrichment.
  • Immowelt Property Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Immowelt Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Land.com Agents Scraper — Scrape property listings and market data from Land.com for market research, price monitoring, and investment analysis.
  • Land.com Scraper — Scrape property listings and market data from Land.com for market research, price monitoring, and investment analysis.
  • Outdoorsy Scraper — Scrape property listings and market data from Outdoorsy for market research, price monitoring, and investment analysis.
  • Propertyfinder Scraper — Scrape property listings and market data from Property Finder for market research, price monitoring, and investment analysis.
  • Realtor.com Agent Scraper — Scrape real estate agents from Realtor.com by city or ZIP code. Optionally fetch full agent profiles and reviews via...
  • Realtor.com Scraper — Scrape Realtor.com property listings with full search filters via GraphQL. Supports price, beds/baths, property...
  • Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Rent.com Scraper — Scrape rental listings from rent.com — search by location query or URL. Extracts property details, photos, floor...
  • Rightmove Scraper — Scrape property listings and market data from Rightmove for market research, price monitoring, and investment analysis.
  • RVshare Scraper — Scrape property listings and market data from RVshare for market research, price monitoring, and investment analysis.
  • Unlimited Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Zillow Detail Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zillow Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zoopla Scraper — Scrape property listings and market data from Zoopla for market research, price monitoring, and investment analysis.

✈️ Travel & Hospitality

Monitor rentals, bookings, and travel listings at scale.

  • Autotrader Scraper — Scrapes car listings from Autotrader.com with advanced search filters, pagination, and detailed vehicle data.
  • CarMax Scraper — Scrapes used car listings from CarMax.com with search URL, zip code filtering, and pagination support.
  • Cars.com Scraper — Scrapes car listings from Cars.com using their GraphQL API. Extracts detailed vehicle data including price, specs,...
  • Cars & Bids Scraper — Scrape live, upcoming, and past car auctions from Cars & Bids. Extract vehicle details, bids, photos, comments, and...
  • Ticketmaster Scraper — Collect rental and travel listings from Ticketmaster for pricing intelligence and availability tracking.

🛒 E-commerce

Scrape products, prices, and marketplace data for competitive research.

  • Amazon Product Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • Amazon Search Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • AutoScout24 Scraper — Scrape car listings from AutoScout24 with full filter support. Extract makes, models, prices, mileage, seller info,...
  • Daraz — Scrape products, prices, and seller data from Daraz for competitor monitoring, pricing, and product research.
  • Etsy Scraper — Scrape products, prices, and seller data from Etsy for competitor monitoring, pricing, and product research.
  • Homedepot Scraper — HomeDepot Products Scraper lets you extract product data from homedepot.com using a collection URL and delivery ZIP....
  • Otodom Scraper - Polish Real Estate Listings — Scrapes property listings from Otodom.pl, Poland's leading real estate marketplace. Supports filters for transaction...

💼 Jobs & Recruitment

Collect job listings and company hiring data for market analysis.

  • ZipRecruiter Job Scraper — Scrape job listings from ZipRecruiter with search queries, locations, and radius filters. Extracts title, company,...

📩 Lead Generation

Find business contacts, leads, and company data for sales and outreach.

  • Company Service Finder — The Company Service Finder uses AI to extract and analyze company services from Google Search & Maps. Get detailed...
  • Doctify Scraper — Doctify Scraper lets you extract doctor and practice data from doctify.com using a search results URL. Collect...
  • Doctolib Scraper — Scrape doctor profiles, availability, and practice details from Doctolib.de — Germany's largest medical appointment...
  • FindLaw Law Firm Scraper - Attorney & Law Firm Data Extraction — Scrape law firm profiles from FindLaw.com. Extract detailed attorney and firm information including contact details,...
  • Google Maps Scraper — Find business leads and contact details from Google Maps for outbound sales, prospecting, and CRM enrichment.
  • Website Services Finder — Automatically extract and analyze company services from any business website using advanced AI. Choose from 5 AI...
  • Zillow Agents — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.
  • Zillow Agents Phone — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.
  • Zillow Agents Vault — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.

⭐ Reviews & Ratings

Monitor reviews and reputation data across review platforms.

  • Airbnb Listing Reviews — Collect reviews and ratings from Airbnb for reputation monitoring and customer insights.
  • BBB Scraper — Collect reviews and ratings from BBB for reputation monitoring and customer insights.
  • Costco Product Scraper — Scrapes product data from Costco.com including prices, descriptions, ratings, and availability. Supports search...
  • HRS Hotel Reviews Scraper — Extract hotel details, room offers, and guest reviews from HRS hotel URLs.
  • HRS Hotel Scraper — Scrapes hotel listings, prices, ratings, and amenities from HRS (hrs.com) by location and travel dates.
  • Rottentomatoes Reviews Scraper — Collect reviews and ratings from Rotten Tomatoes for reputation monitoring and customer insights.
  • Trustpilot Reviews Scraper — Collect reviews and ratings from Trustpilot for reputation monitoring and customer insights.

🍔 Food & Delivery

Extract restaurant, grocery, and delivery platform data.

  • Instacart Scraper — Scrape menus, stores, and delivery data from Instacart for data-driven research and automation.
  • Publix Scraper — Scrape menus, stores, and delivery data from Publix for data-driven research and automation.

🛠️ Developer Tools

General-purpose scraping and automation tools.

  • Web Crawler — This web crawler is designed to provide users with complete flexibility by allowing them to use their **own...

Understanding Proxies:

When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.

Why Use Proxies?

  • Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
  • Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
  • Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.

Types of Proxies

  1. Residential Proxies
    • Real IP addresses provided by ISPs to home users.
    • They mimic regular users, making them harder to detect.
    • Best for: Long-term, undetectable scraping, and avoiding blocks.
  2. Data Center Proxies
    • IP addresses from servers in data centers.
    • Faster and cheaper than residential proxies but easier to detect and block.
    • Best for: High-speed scraping, but with a higher risk of detection.
  3. Mobile Proxies
    • IPs provided by mobile carriers (3G/4G/5G networks).
    • Very difficult to detect, as they appear as regular mobile users.
    • Best for: Mobile-related scraping or avoiding sophisticated blocks.

Rotating Proxies vs. Straight Proxies

  • Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
  • Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.

About Rigel Bytes

Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.

Contact Us

Ready to unlock the power of data? Reach out to us at (contact@rigelbytes.com) or book an appointment with us to learn more about how we can help you achieve your data goals.

Detailed Data

[
{
"commentId": "UgzuC3zzpRZkjc5Qzsd4AaABAg",
"text": "We're so honored that the first ever YouTube video was filmed here!",
"author": "@SanDiegoZoo",
"authorChannelId": "UCC5NfQ6Mf0dq_eEwv4P_hWA",
"likeCount": 4600000,
"isFavorited": true,
"isReply": false,
"parentCommentId": null,
"publishedAt": "2020-07-09T00:00:00+00:00",
"videoId": "jNQXAC9IVRw",
"videoUrl": "https://www.youtube.com/watch?v=jNQXAC9IVRw",
"videoTitle": "Me at the zoo",
"channelName": "jawed",
"channelId": "UC4QobU6STFB0P71PMvOGN5A",
"videoPublishedAt": "2005-04-24",
"videoViewCount": 398675009,
"videoCommentCount": 10
},
{
"commentId": "UgzuC3zzpRZkjc5Qzsd4AaABAg.958xaQsh63D95AEkVnh_di",
"text": "How did I randomly go to this video and see this comment 11 hours after it was posted? That's amazing",
"author": "@tacticals.1811",
"authorChannelId": "UCS2FiwDUXi_VJwC7HGJl4sw",
"likeCount": 49000,
"isFavorited": false,
"isReply": true,
"parentCommentId": "UgzuC3zzpRZkjc5Qzsd4AaABAg",
"publishedAt": "2020-07-09T00:00:00+00:00",
"videoId": "jNQXAC9IVRw",
"videoUrl": "https://www.youtube.com/watch?v=jNQXAC9IVRw",
"videoTitle": "Me at the zoo",
"channelName": "jawed",
"channelId": "UC4QobU6STFB0P71PMvOGN5A",
"videoPublishedAt": "2005-04-24",
"videoViewCount": 398675009,
"videoCommentCount": 10
}
]