AutomationFlowsSocial Media › Gather Complete Youtube Channel Data to Google Sheets

Gather Complete Youtube Channel Data to Google Sheets

ByAgent Circle @agentcircle on n8n.io

Use cases are many: Whether you're part of an MCN or YouTube channel network, a digital marketing agency, an influencer analyst, or a growth-focused YouTube consultant, this tool helps you instantly access detailed channel data for scouting, benchmarking, and strategic planning.…

Event trigger★★★★☆ complexity13 nodesGoogle SheetsHTTP Request
Social Media Trigger: Event Nodes: 13 Complexity: ★★★★☆ Added:

This workflow corresponds to n8n.io template #5728 — we link there as the canonical source.

This workflow follows the Google Sheets → HTTP Request recipe pattern — see all workflows that pair these two integrations.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "id": "RrOJMiVIAruC9gFU",
  "meta": {
    "templateCredsSetupCompleted": true
  },
  "name": "Youtube - Get Channel Information",
  "tags": [
    {
      "id": "CEVEeZJa4qgPvdpK",
      "name": "youtube",
      "createdAt": "2025-05-27T02:29:43.874Z",
      "updatedAt": "2025-05-27T02:29:43.874Z"
    }
  ],
  "nodes": [
    {
      "id": "6d81882f-1b1d-41e9-8bf0-7e62afeca99f",
      "name": "When clicking \u2018Test workflow\u2019",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        -720,
        280
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "e4575f9b-070f-4565-b363-568617d61e24",
      "name": "If - Check Success Response",
      "type": "n8n-nodes-base.if",
      "position": [
        820,
        80
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 2,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "bce76f94-5904-4fdb-b172-adc1134855f9",
              "operator": {
                "type": "number",
                "operation": "gt"
              },
              "leftValue": "={{ $json.body.pageInfo.totalResults }}",
              "rightValue": 0
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "8964eaa0-676d-4bf5-bdd1-3f3e8c53bd2e",
      "name": "Google Sheets - Update Data",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        1120,
        180
      ],
      "parameters": {
        "columns": {
          "value": {
            "title": "={{ $json.body.items[0].snippet.title }}",
            "status": "finish",
            "country": "={{ $json.body.items[0].brandingSettings.channel.country || '' }}",
            "keywords": "={{ $json.body.items[0].brandingSettings.channel.keywords || '' }}",
            "channel_id": "={{ $json.body.items[0].id }}",
            "custom_url": "={{ $json.body.items[0].snippet.customUrl }}",
            "row_number": "={{ $('Google Sheets - Get Channel URLs').item.json.row_number }}",
            "thumbnails": "={{ $json.body.items[0].snippet.thumbnails.default.url }}",
            "view_count": "={{ $json.body.items[0].statistics.viewCount }}",
            "description": "={{ $json.body.items[0].snippet.description }}",
            "video_count": "={{ $json.body.items[0].statistics.videoCount }}",
            "published_at": "={{ $json.body.items[0].snippet.publishedAt.toString().slice(0, 19).replace('T', ' ') }}",
            "subscriber_count": "={{ $json.body.items[0].statistics.subscriberCount || 0 }}",
            "last_fetched_time": "={{ $now.toISO().toString().slice(0, 19).replace('T', ' ') }}"
          },
          "schema": [
            {
              "id": "status",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "status",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "channel_url",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "channel_url",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "last_fetched_time",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "last_fetched_time",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "title",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "title",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "description",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "description",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "channel_id",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "channel_id",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "custom_url",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "custom_url",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "published_at",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "published_at",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "thumbnails",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "thumbnails",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "view_count",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "view_count",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "subscriber_count",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "subscriber_count",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "video_count",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "video_count",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "keywords",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "keywords",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "country",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "country",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "row_number",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": true,
              "required": false,
              "displayName": "row_number",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [
            "row_number"
          ],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "update",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 426418282,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM/edit#gid=426418282",
          "cachedResultName": "Channel Urls"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM/edit?usp=drivesdk",
          "cachedResultName": "YouTube - Get Channel Information"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "name": "<your credential>"
        }
      },
      "executeOnce": true,
      "typeVersion": 4.5
    },
    {
      "id": "fc68d632-6349-4c95-9243-97e2f4476afd",
      "name": "Google Sheets - Update Data - Error",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        1120,
        400
      ],
      "parameters": {
        "columns": {
          "value": {
            "status": "error",
            "row_number": "={{ $('Google Sheets - Get Channel URLs').item.json.row_number }}",
            "last_fetched_time": "={{ $now.toISO().toString().slice(0, 19).replace('T', ' ') }}"
          },
          "schema": [
            {
              "id": "status",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "status",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "channel_url",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "channel_url",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "last_fetched_time",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "last_fetched_time",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "title",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "title",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "description",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "description",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "channel_id",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "channel_id",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "custom_url",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "custom_url",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "published_at",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "published_at",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "thumbnails",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "thumbnails",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "view_count",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "view_count",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "subscriber_count",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "subscriber_count",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "video_count",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "video_count",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "keywords",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "keywords",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "country",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "country",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "row_number",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": true,
              "required": false,
              "displayName": "row_number",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [
            "row_number"
          ],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "update",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 426418282,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM/edit#gid=426418282",
          "cachedResultName": "Channel Urls"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM/edit?usp=drivesdk",
          "cachedResultName": "YouTube - Get Channel Information"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "name": "<your credential>"
        }
      },
      "executeOnce": true,
      "typeVersion": 4.5
    },
    {
      "id": "9e3960f0-5982-4deb-a38b-488cfbd808a5",
      "name": "Loop Over Items",
      "type": "n8n-nodes-base.splitInBatches",
      "position": [
        -300,
        280
      ],
      "parameters": {
        "options": {}
      },
      "typeVersion": 3
    },
    {
      "id": "25556915-5243-4881-be05-7b0df816744c",
      "name": "Sticky Note",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1700,
        -320
      ],
      "parameters": {
        "width": 780,
        "height": 1520,
        "content": "## [Agent Circle's N8N Workflow] YouTube Channel Information Crawler - Try It Out!\n\n**This N8N template demonstrates how to use our tool to collect key information from any YouTube channel - including title, description, custom URL, stats (views, subscribers, videos), creation date, country, keywords, thumbnails, and channel ID. Everything is fetched and saved directly in a linked Google Sheet.**\n\nUse cases are many: Whether you're part of an MCN or YouTube channel network, a digital marketing agency, an influencer analyst, or a growth-focused YouTube consultant, this tool helps you instantly access detailed channel data for scouting, benchmarking, and strategic planning. It's perfect for competitive research, brand vetting, or building your next performance dashboard.\n\n## How It Works\n- The workflow starts when you manually click **Test Workflow** or **Execute Workflow** in N8N.\n- It reads through the list of **full channel URLs or custom channel URLs** from the **Channel URLs** tab in a connected Google Sheet. Only the URLs marked with the **Ready** status will be processed.\n- The tool loops through each row and prepares the necessary data for the YouTube API call later.\n- A **Switch** node detects the URL type of each input (whether it's a full or custom channel URL) and routes it accordingly.\n- Based on the input type, the appropriate YouTube API endpoint is triggered to fetch channel metrics.\n- It checks whether the API call is successful before continuing:\n   - If successful, the fetched data is written back to the connected Google Sheet in the same row and the row's status is updated to **Finished**. \n   - If it fails, the row's status is updated to **Error**.\n\n## How To Use\n- Download the workflow package.\n- Import the workflow package into your N8N interface.\n- Duplicate the [**YouTube - Get Channel Information** Google Sheet template](https://docs.google.com/spreadsheets/d/1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM/edit?gid=426418282#gid=426418282) into your Google Sheets account.\n- Set up **Google Cloud Console** credentials in the following nodes in N8N, ensuring enabled access and suitable rights to Google Sheets and YouTube services: \n     + For Google Sheets access, ensure each node is properly connected to the correct tab in your connected Google Sheet template: \n      Node **Google Sheets - Get Channel URLs** \u2192 connected to Tab **Channel URLs**; \n      Node **Google Sheets - Update Data** \u2192 connected to Tab **Channel URLs**;\n      Node **Google Sheets - Update Data - Error** \u2192 connected to Tab **Channel URLs**.\n    + For YouTube access, set up a GET method to connect to YouTube API in the following nodes:\n      Node **HTTP Request - Get Comments For Video URLs 1**;  \n      Node **HTTP Request - Get Comments For Video URLs 2**.\n- In your connected Google Sheet, enter the full or custom channel URLs that you want to crawl and set the rows' status to **Ready**.\n- Run the workflow by clicking **Execute Workflow** or **Test Workflow** in N8N.\n- View the results in your Google Sheet: Successful fetches will update channel data in the same row in **Channel URLs** tab and the row's status is updated to **Finished**; otherwise, the row's status will be changed to **Error**.\n\n## Requirements\n- Basic setup in Google Cloud Console (OAuth or API Key method enabled) with enabled access to YouTube and Google Sheets.\n\n## How To Customize\n- By default, the workflow is manually triggered in N8N. However, you can automate the process by adding a Google Sheets trigger that monitors new entries in your **YouTube \u2013 Get Channel Information** template and starts the workflow automatically.\n\n## Need Help?\nJoin our community on different platforms for support, inspiration and tips from others.\n\nWebsite: https://www.agentcircle.ai/\nEtsy: https://www.etsy.com/shop/AgentCircle\nGumroad: http://agentcircle.gumroad.com/\nDiscord Global: https://discord.gg/d8SkCzKwnP\nFB Page Global: https://www.facebook.com/agentcircle/\nFB Group Global: https://www.facebook.com/groups/aiagentcircle/\nX: https://x.com/agent_circle\nYouTube: https://www.youtube.com/@agentcircle\nLinkedIn: https://www.linkedin.com/company/agentcircle"
      },
      "typeVersion": 1
    },
    {
      "id": "abbc6aa8-ab44-4c43-ab1b-2e3349f61cb8",
      "name": "Google Sheets - Get Channel URLs",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        -520,
        280
      ],
      "parameters": {
        "options": {},
        "filtersUI": {
          "values": [
            {
              "lookupValue": "ready",
              "lookupColumn": "status"
            }
          ]
        },
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 426418282,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM/edit#gid=426418282",
          "cachedResultName": "Channel Urls"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1easnNMrm8ovxhlZQwPUge6UbPnUVFKBeaQY5EmmG1gM/edit?usp=drivesdk",
          "cachedResultName": "YouTube - Get Channel Information"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 4.5
    },
    {
      "id": "4d53d340-e41a-4b8e-a01b-51aa72b33430",
      "name": "Sticky Note1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -780,
        -320
      ],
      "parameters": {
        "color": 7,
        "width": 680,
        "height": 980,
        "content": "## 1. Read Channel URLs From Google Sheets\n- We\u2019ll start by pulling a list of channel URLs or custom channel URLs from your connected Google Sheet. \n- The loop iterates over each row that's marked as **Ready** in the status **Column A** for processing.\n"
      },
      "typeVersion": 1
    },
    {
      "id": "75deba24-d050-4ef1-96fd-b8a004c12487",
      "name": "Sticky Note2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        20,
        -320
      ],
      "parameters": {
        "color": 7,
        "width": 580,
        "height": 980,
        "content": "## 2. Detect Input Type And Fetch Channel Data Using YouTube API\n- We\u2019ll check whether each entry is a full channel URL or a custom channel URL; then, route it to the appropriate YouTube API call.\n- Based on your input, we'll perform a YouTube API request to retrieve channel information. \n\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "dfa8fe7d-448c-44ba-beee-b26b33c35a80",
      "name": "Sticky Note3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        720,
        -320
      ],
      "parameters": {
        "color": 7,
        "width": 580,
        "height": 980,
        "content": "## 3. Update Google Sheets With Results\n- If the response is successful, all collected metrics for that channel are inserted into connected Google Sheet. Its row's status in **Column A** in your connected Google Sheet is marked as **Finished** automatically to prevent it from being reprocessed.\n- If the call fails, the row's status in **Column A** of the Google Sheet will be updated to **Error** for your notice.\n- Then, the tool moves on to the next available channel URL, if one exists.\n"
      },
      "typeVersion": 1
    },
    {
      "id": "8f057b52-f6f1-4722-b5cd-2a0d831cebc4",
      "name": "HTTP Request - Get Channel Info By Full URL",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        420,
        -40
      ],
      "parameters": {
        "url": "https://www.googleapis.com/youtube/v3/channels",
        "options": {
          "response": {
            "response": {
              "fullResponse": true,
              "responseFormat": "json"
            }
          }
        },
        "sendQuery": true,
        "authentication": "predefinedCredentialType",
        "queryParameters": {
          "parameters": [
            {
              "name": "part",
              "value": "id,snippet,statistics,contentDetails,brandingSettings"
            },
            {
              "name": "id",
              "value": "={{ $json.channel_url.match(/channel\\/([A-Za-z0-9_-]+)/)[1] || ''}}"
            }
          ]
        },
        "nodeCredentialType": "youTubeOAuth2Api"
      },
      "credentials": {
        "youTubeOAuth2Api": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "eb1eadd5-2f80-4a35-940b-0997369d7738",
      "name": "HTTP Request - Get Channel Info By Custom URL",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        420,
        160
      ],
      "parameters": {
        "url": "https://www.googleapis.com/youtube/v3/channels",
        "options": {
          "response": {
            "response": {
              "fullResponse": true,
              "responseFormat": "json"
            }
          }
        },
        "sendQuery": true,
        "authentication": "predefinedCredentialType",
        "queryParameters": {
          "parameters": [
            {
              "name": "part",
              "value": "id,snippet,statistics,contentDetails,brandingSettings"
            },
            {
              "name": "forHandle",
              "value": "={{ $json.channel_url.split('@')[1] || ''}}"
            }
          ]
        },
        "nodeCredentialType": "youTubeOAuth2Api"
      },
      "credentials": {
        "youTubeOAuth2Api": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "cc9f9b53-f751-4368-9bc2-d05f7ca352f3",
      "name": "Switch - Detect URL Type",
      "type": "n8n-nodes-base.switch",
      "position": [
        100,
        80
      ],
      "parameters": {
        "rules": {
          "values": [
            {
              "conditions": {
                "options": {
                  "version": 2,
                  "leftValue": "",
                  "caseSensitive": true,
                  "typeValidation": "loose"
                },
                "combinator": "and",
                "conditions": [
                  {
                    "id": "cb81ca70-cc67-457a-b810-20c2e3f726f6",
                    "operator": {
                      "type": "string",
                      "operation": "regex"
                    },
                    "leftValue": "={{ $json.channel_url }}",
                    "rightValue": "/UC[A-Za-z0-9_-]{22}/"
                  }
                ]
              }
            },
            {
              "conditions": {
                "options": {
                  "version": 2,
                  "leftValue": "",
                  "caseSensitive": true,
                  "typeValidation": "loose"
                },
                "combinator": "and",
                "conditions": [
                  {
                    "id": "d7fc8f6c-3c0e-4c50-8986-ca3d7d76fc02",
                    "operator": {
                      "type": "string",
                      "operation": "regex"
                    },
                    "leftValue": "={{ $json.channel_url }}",
                    "rightValue": "/@([^/]+)/"
                  }
                ]
              }
            }
          ]
        },
        "options": {},
        "looseTypeValidation": true
      },
      "typeVersion": 3.2
    }
  ],
  "active": false,
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "9999c389-9e87-4a1e-a3e6-84a27321fc01",
  "connections": {
    "Loop Over Items": {
      "main": [
        [],
        [
          {
            "node": "Switch - Detect URL Type",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Switch - Detect URL Type": {
      "main": [
        [
          {
            "node": "HTTP Request - Get Channel Info By Full URL",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "HTTP Request - Get Channel Info By Custom URL",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Google Sheets - Update Data": {
      "main": [
        [
          {
            "node": "Loop Over Items",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "If - Check Success Response": {
      "main": [
        [
          {
            "node": "Google Sheets - Update Data",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Google Sheets - Update Data - Error",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Google Sheets - Get Channel URLs": {
      "main": [
        [
          {
            "node": "Loop Over Items",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "When clicking \u2018Test workflow\u2019": {
      "main": [
        [
          {
            "node": "Google Sheets - Get Channel URLs",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Google Sheets - Update Data - Error": {
      "main": [
        [
          {
            "node": "Loop Over Items",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "HTTP Request - Get Channel Info By Full URL": {
      "main": [
        [
          {
            "node": "If - Check Success Response",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "HTTP Request - Get Channel Info By Custom URL": {
      "main": [
        [
          {
            "node": "If - Check Success Response",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Use cases are many: Whether you're part of an MCN or YouTube channel network, a digital marketing agency, an influencer analyst, or a growth-focused YouTube consultant, this tool helps you instantly access detailed channel data for scouting, benchmarking, and strategic planning.…

Source: https://n8n.io/workflows/5728/ — original creator credit. Request a take-down →

More Social Media workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Social Media

This n8n workflow automates the process of uploading video and image advertisements to Meta Ads Manager via the Meta Graph API (Facebook Ads) directly from Google Sheets and Google Drive. The workflow

Facebook Graph Api, Google Sheets, HTTP Request +2
Social Media

This workflow provides an end-to-end automation for discovering, evaluating, and optionally downloading high-quality educational YouTube videos.

HTTP Request, Google Sheets
Social Media

• Downloads videos/music from YouTube using yt-dlp • Merges assets with dynamic text overlays • Automatically uploads to YouTube as Shorts (9:16 format) • Tracks everything in Google Sheets Install yt

Google Sheets, Execute Command, Read Write File +1
Social Media

This workflow contains community nodes that are only compatible with the self-hosted version of n8n.

HTTP Request, Google Sheets, Google Drive +1
Social Media

This workflow is perfect for digital content creators, marketers, and social media managers who regularly create engaging short-form videos featuring inspirational or motivational quotes. While the wo

Google Sheets, Google Drive, Read Write File +2