Workflow

Daily n8n Review Summarization Workflow

n8n workflow that collects brand reviews and mentions daily from Google, Reddit, and YouTube, then summarizes sentiment and key themes automatically.

Overview

This n8n-compatible workflow runs daily to collect brand mentions and reviews from Google, Reddit, and YouTube. It categorizes mentions by sentiment, extracts key themes, and produces a daily digest that marketing teams can act on immediately.

Trigger

Daily cron at 7:00 AM, results delivered to Slack or email by 7:30 AM.

Schedule

Daily at 9:00 AM

Workflow Steps

1

Configure Brand Monitoring Queries

Set up the brand name variations and competitor names to monitor across platforms.

2

Collect Mentions Across Platforms

Search each platform for brand and competitor mentions. Collect titles, snippets, and URLs for analysis.

3

Classify Sentiment and Extract Themes

Apply basic sentiment classification to each mention and extract recurring themes from the snippets.

4

Generate Daily Digest

Compile the daily digest with sentiment summary, top mentions, and action items for the marketing team.

Python Implementation

Python
import requests, os
H = {'x-api-key': os.environ['SCAVIO_API_KEY'], 'Content-Type': 'application/json'}
data = requests.post('https://api.scavio.dev/api/v1/search', headers=H, json={'query': 'example', 'country_code': 'us'}).json()
print(len(data.get('organic_results', [])))

JavaScript Implementation

JavaScript
const H = {'x-api-key': process.env.SCAVIO_API_KEY, 'Content-Type': 'application/json'};
fetch('https://api.scavio.dev/api/v1/search', {method: 'POST', headers: H, body: JSON.stringify({query: 'example', country_code: 'us'})}).then(r => r.json()).then(d => console.log(d.organic_results?.length));

Platforms Used

Google

Web search with knowledge graph, PAA, and AI overviews

Amazon

Product search with prices, ratings, and reviews

Frequently Asked Questions

This n8n-compatible workflow runs daily to collect brand mentions and reviews from Google, Reddit, and YouTube. It categorizes mentions by sentiment, extracts key themes, and produces a daily digest that marketing teams can act on immediately.

This workflow uses a daily cron at 7:00 am, results delivered to slack or email by 7:30 am.. Daily at 9:00 AM.

This workflow uses the following Scavio platforms: google, amazon. Each platform is called via the same unified API endpoint.

Yes. Scavio's free tier includes 250 credits per month with no credit card required. That is enough to test and validate this workflow before scaling it.

Daily n8n Review Summarization Workflow

n8n workflow that collects brand reviews and mentions daily from Google, Reddit, and YouTube, then summarizes sentiment and key themes automatically.