Skip to main content

Detect competitor product launches from ads with Google Sheets and OpenAI

Workflow preview

Workflow preview
100%
Detect competitor product launches from ads with Google Sheets and OpenAI preview
Open on n8n.io

1. Workflow Overview

Quick Overview This scheduled workflow scans competitor ads via Adyntel (Meta, Google, and LinkedIn), extracts newly appearing terms from ad copy, and uses OpenAI to classify potential launch signa...

Best for

  • Market Research automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.scheduletrigger, n8n-nodes-base.googlesheets, n8n-nodes-base.splitinbatches, n8n-nodes-adyntel.adyntel, n8n-nodes-base.merge, n8n-nodes-base.code, n8n-nodes-base.if, @n8n/n8n-nodes-langchain.agent

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Zain Khan.

Original n8n.io source

1.1 Workflow description

Title
Detect competitor product launches from ads with Google Sheets and OpenAI
Workflow name
Detect competitor product launches from ads with Google Sheets and OpenAI

Quick Overview

This scheduled workflow scans competitor ads via Adyntel (Meta, Google, and LinkedIn), extracts newly appearing terms from ad copy, and uses OpenAI to classify potential launch signals, then logs results and updates baselines in Google Sheets.

How it works

  1. Runs on a schedule and reads competitor domains marked as Pending from a Google Sheets spreadsheet.
  2. For each competitor, fetches active ads from Meta, Google Ads, and LinkedIn Ads using Adyntel and combines the results.
  3. Extracts and deduplicates ad headlines and body text, then compiles a single text corpus for the current week.
  4. Loads previously known terms for the competitor from Google Sheets and deterministically extracts new terms from this week’s ads by comparing against the baseline.
  5. If no qualifying new terms are found, writes baseline terms derived from this week’s ad titles to the known_terms sheet, marks the competitor as Done, and continues to the next competitor.
  6. If new terms are found, sends the terms and ad-copy context to OpenAI to classify each term and decide whether the pattern indicates a product launch.
  7. When a launch signal is detected, appends a record to the launch_signals sheet, adds the newly discovered terms (with categories) to known_terms, updates the competitor status to Done, and formats a Slack-ready alert message.

Setup

  1. Create a Google Sheets spreadsheet with three tabs named competitors, known_terms, and launch_signals, and ensure the expected columns exist (at minimum: competitors.domain and competitors.status, known_terms.domain and known_terms.term, and the launch_signals columns used for logging).
  2. Connect Google Sheets OAuth2 credentials in n8n and update the spreadsheet ID/sheet selectors if you are not using the provided document.
  3. Add an Adyntel API credential so the workflow can query Meta, Google Ads, and LinkedIn Ads by company domain.
  4. Add an OpenAI API credential (Chat Model) and select the model you want to use for term classification and launch-signal detection.
  5. Populate the competitors sheet with competitor_name, domain, and set status to Pending for rows you want processed, then adjust the schedule interval to your preferred scan frequency.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Schedule Trigger

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.3

Block 2 - Read Competitors

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 3 - Loop Over Competitors

Type / Role
n8n-nodes-base.splitInBatches - splitInBatches
Config choices
Version 3

Block 4 - Search LinkedIn Ads

Type / Role
n8n-nodes-adyntel.adyntel - adyntel
Config choices
Version 1

Block 5 - Search Google Ads

Type / Role
n8n-nodes-adyntel.adyntel - adyntel
Config choices
Version 1

Block 6 - Search Facebook Ads

Type / Role
n8n-nodes-adyntel.adyntel - adyntel
Config choices
Version 1

Block 7 - Merge All Platform Results

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.2

Block 8 - Extract All Ad Copy

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - Read Known Terms

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 10 - Extract New Terms

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 11 - Any New Terms?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 12 - AI Agent — Classify Terms

Type / Role
@n8n/n8n-nodes-langchain.agent - agent
Config choices
Version 3.1

Block 13 - OpenAI Chat Model

Type / Role
@n8n/n8n-nodes-langchain.lmChatOpenAi - lmChatOpenAi
Config choices
Version 1.3

Block 14 - Parse Classification Result

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 15 - Signal Detected?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 16 - Prep New Known Terms

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 17 - Append to Launch Signals

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.4

Block 18 - Append New Known Terms

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.4

Block 19 - Update Compatitor status

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 20 - Format Slack Alert

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 21 - Prep Baseline Terms

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 22 - Has Baseline Terms?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 23 - Append Baseline Terms

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.4

Block 24 - Update competitor status

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Showing the first 24 of 30 workflow blocks. Download the JSON for the full node graph.

3. Summary Table

Workflow Detect competitor product launches from ads with Google Sheets and OpenAI
Complexity advanced
Nodes 30
Categories Market Research, AI Summarization
Author Zain Khan
Published 12 Jun 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/16307/16307.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Detect competitor product launches from ads with Google Sheets and OpenAI do?

Quick Overview This scheduled workflow scans competitor ads via Adyntel (Meta, Google, and LinkedIn), extracts newly appearing terms from ad copy, and uses OpenAI to classify potential launch signa...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Market Research, AI Summarization use case.