🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 21, 2026

YouTube to Google Sheets, new videos logged for you

Lisa Granqvist Partner Workflow Automation Expert

Manually checking five, ten, or twenty YouTube channels is the kind of “quick task” that quietly steals your week. You miss uploads, paste the wrong URL, and end up with a messy spreadsheet you do not trust.

This YouTube Sheets log automation hits marketing managers and research analysts first. But it also matters to an agency owner building competitor reports. The outcome is simple: new videos get captured in one Google Sheet with clean titles, dates, and links.

You’ll see what the workflow does, what you need to run it, and how teams use it as the “Part 1” foundation for bigger reporting and sentiment analysis.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: YouTube to Google Sheets, new videos logged for you

The Problem: Tracking New YouTube Uploads Gets Messy Fast

Keeping a clean log of new uploads across multiple YouTube channels sounds straightforward until you do it for real. You open a bunch of tabs, skim for the latest video, copy the URL, paste it into a sheet, then repeat. Next week you can’t remember if you already logged that upload, so you double-enter it. Or you forget one channel entirely. The worst part is the mental load: you spend more time “maintaining the tracking system” than learning anything from it.

It adds up fast. Here’s where it breaks down in day-to-day work.

  • Checking 10 channels even once a day can easily chew up about an hour, and that’s before you format anything neatly.
  • Copy-paste mistakes happen constantly, which means broken links in reports and “Wait, is that the right video?” moments on client calls.
  • When the sheet isn’t updated reliably, nobody uses it, so you lose the one place that should have been your source of truth.
  • Scaling into sentiment analysis or dashboards is basically impossible if your starting dataset is inconsistent.

The Solution: Automatically Fetch New Videos into Google Sheets

This n8n workflow turns YouTube channel monitoring into a repeatable system. You keep a simple list of Channel IDs in a Google Sheet (Sheet3). When the workflow runs, it reads those IDs, calls the YouTube Data API to fetch the latest videos for each channel, then pulls out the useful fields like title, publish date, and the video URL. Finally, it writes (upserts) the results into a second tab (Sheet2) so your “new videos log” stays current without manual work. Honestly, the real value is trust: you stop wondering if your tracker is missing things.

The workflow starts with a manual trigger (or you can schedule it). It then loops through your channel list in batches, maps each video into clean spreadsheet columns, and updates your log in one place. Sheet2 becomes the handoff point for deeper analysis later, including comment sentiment analysis in a follow-up workflow.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you track 12 competitor and partner channels and you update your log three times a week. Manually, you’ll spend maybe 5 minutes per channel to find the latest upload, copy the URL, and paste details, which is about an hour per run (so roughly 3 hours a week). With this workflow, updates look more like 2 minutes to add or adjust Channel IDs plus a few minutes of API processing time. You get most of those hours back, and your sheet is cleaner too.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Google Sheets to store Channel IDs and video logs
  • YouTube Data API to fetch video metadata for channels
  • Google Cloud API key (get it from Google Cloud Console)

Skill level: Beginner. You’ll connect accounts, paste an API key, and match a few spreadsheet columns.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

A run is triggered. In the provided workflow it starts manually, but many teams switch this to a daily or weekly schedule so the sheet stays fresh without anyone remembering.

Channel IDs are pulled from Google Sheets. The workflow reads your list from Sheet3, so adding a new channel is as easy as pasting a new ID into a row.

YouTube is queried and results are normalized. An HTTP request hits the YouTube Data API, then n8n loops through returned items in manageable batches and maps each video into consistent fields (title, publish date, URL).

Your tracking log is updated. The workflow upserts the cleaned rows into Sheet2, which becomes the “video queue” for downstream work like dashboards or a comment sentiment analyzer.

You can easily modify the columns captured (like view count or thumbnails) to fit your reporting needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Manual Trigger

Set up the workflow to run on demand using the manual trigger.

  1. Add and confirm the Manual Start Trigger node as the workflow trigger.
  2. Leave the Manual Start Trigger parameters empty (defaults are used).
  3. Ensure Manual Start Trigger connects to Retrieve Channel IDs Sheet.

The Flowpast Branding sticky note is informational and does not affect execution.

Step 2: Connect Google Sheets

Configure the input sheet that provides YouTube channel IDs.

  1. Open Retrieve Channel IDs Sheet and set Authentication to serviceAccount.
  2. Select the Document as Youtube Videos Comments (ID 1xoCVr_mlwn4jFcnJENtrU-_K5nkIytZ8qBXzxMq55n4).
  3. Set the Sheet Name to Sheet3.
  4. Credential Required: Connect your googleApi credentials in Retrieve Channel IDs Sheet.

⚠️ Common Pitfall: If the service account does not have access to the spreadsheet, the node will return empty data.

Step 3: Set Up Video Fetching and Batching

Pull recent videos for each channel ID and split the results into individual items.

  1. Open Fetch Channel Videos API and set URL to https://www.googleapis.com/youtube/v3/search.
  2. Enable Send Query and configure query parameters: channelId = {{ $json.channelId }}, part = snippet, order = date, maxResults = 50.
  3. In Fetch Channel Videos API pagination, set pageToken to {{ $response.body.nextPageToken }} and completeExpression to {{ !$response.body.nextPageToken }}.
  4. Credential Required: Connect your httpQueryAuth credentials in Fetch Channel Videos API.
  5. Open Separate Item Batches and set Field To Split Out to items.

The execution flow is Retrieve Channel IDs SheetFetch Channel Videos APISeparate Item Batches, ensuring each video item is processed individually.

Step 4: Configure Field Mapping and Sheet Upsert

Map YouTube fields to sheet columns and upsert records by video URL.

  1. In Map Fields for Sheet, add assignments: Title = {{ $json.snippet.title }}, video_urls = https://www.youtube.com/watch?v={{ $json.id.videoId }}, and published_at = {{ $json.snippet.publishedAt }}.
  2. Open Upsert Video Links Sheet and set Operation to appendOrUpdate.
  3. Select the Document as Youtube Videos Comments (ID 1xoCVr_mlwn4jFcnJENtrU-_K5nkIytZ8qBXzxMq55n4) and Sheet Name to Sheet2.
  4. Map columns in Upsert Video Links Sheet: Title = {{ $json.Title }}, video_urls = {{ $json.video_urls }}, published_at = {{ $json.published_at }}.
  5. Set Matching Columns to video_urls to prevent duplicates.
  6. Credential Required: Connect your googleApi credentials in Upsert Video Links Sheet.

⚠️ Common Pitfall: If Matching Columns doesn’t include video_urls, updates may create duplicate rows.

Step 5: Test and Activate Your Workflow

Validate the end-to-end flow and enable it for regular use.

  1. Click Execute Workflow to run Manual Start Trigger and process the current channel IDs.
  2. Confirm that Fetch Channel Videos API returns items and Separate Item Batches splits them into individual records.
  3. Verify that Upsert Video Links Sheet writes rows to Sheet2 with the mapped fields.
  4. When satisfied, toggle the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • YouTube Data API credentials can expire or be restricted by project settings. If things break, check your Google Cloud Console API credentials and quotas first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Frequently Asked Questions

How long does it take to set up this YouTube Sheets log automation?

About 30 minutes if your Sheet tabs are ready.

Do I need coding skills to automate YouTube video logging?

No. You’ll connect Google Sheets, add a YouTube API key, and map a few fields.

Is n8n free to use for this YouTube Sheets log workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in YouTube Data API usage (it’s quota-based and usually inexpensive for simple lookups).

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I customize this YouTube Sheets log workflow for weekly tracking instead of manual runs?

Yes, and it’s a common tweak. Replace the Manual Start Trigger with a schedule trigger so it runs every day or every week. You can also expand the “Map Fields for Sheet” step to include extra columns like view count, thumbnails, or channel name if your reporting needs it.

Why is my YouTube connection failing in this workflow?

Usually it’s an API key or quota issue in the Google Cloud project tied to the YouTube Data API. Regenerate or re-restrict the key, then update it in the HTTP request node in n8n. Also confirm the YouTube Data API is enabled for that project, because a disabled API can look like “random” failures. If you’re polling many channels frequently, you may simply be hitting quota limits.

How many videos can this YouTube Sheets log automation handle?

A lot. On n8n Cloud, your limit is mainly monthly executions on your plan, while self-hosting has no execution cap (it depends on your server). Practically, this workflow scales well because it processes channels in batches; most teams comfortably track dozens of channels as long as their YouTube API quota supports it.

Is this YouTube Sheets log automation better than using Zapier or Make?

Sometimes. If you only want a simple “new upload to sheet” for one channel, Zapier or Make can be quicker. But this workflow is designed for multiple channels, batching, and clean field mapping, which is where n8n tends to feel more flexible (and cheaper at higher volume). The other big win is that this is built to feed a Part 2 workflow (comments and sentiment) without rework. If you’re unsure, Talk to an automation expert and describe your tracking and reporting goals.

Once this is running, your tracking sheet stops being a chore and starts being infrastructure. Set it up once, then let the workflow keep the log honest.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal