Skip to main content

Detect fake product reviews with OpenAI and send alerts to Slack via Airtable

Workflow preview

Workflow preview
100%
Detect fake product reviews with OpenAI and send alerts to Slack via Airtable preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

AI Powered Fake Review Detection Workflow Using n8n & Airtable This workflow automates the detection of potentially fake or manipulated product reviews using n8n, Airtable, OpenAI and Slack. It fet...

Best for

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

Tools used

n8n-nodes-base.webhook, n8n-nodes-base.splitinbatches, n8n-nodes-base.httprequest, n8n-nodes-base.splitout, n8n-nodes-base.if, n8n-nodes-base.code, n8n-nodes-base.airtable, n8n-nodes-base.openai

Source and attribution

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

Original n8n.io source

1.1 Workflow description

Title
Detect fake product reviews with OpenAI and send alerts to Slack via Airtable
Workflow name
Detect fake product reviews with OpenAI and send alerts to Slack via Airtable

AI-Powered Fake Review Detection Workflow Using n8n & Airtable

This workflow automates the detection of potentially fake or manipulated product reviews using n8n, Airtable, OpenAI and Slack. It fetches reviews for a given product, standardizes the data, generates a unique hash to avoid duplicates, analyzes each review using an AI model, updates the record in Airtable and alerts the moderation team if the review appears suspicious.

Quick Implementation Steps

  1. Add Airtable, OpenAI and Slack credentials to n8n.
  2. Create an Airtable Base with a reviews table.
  3. Connect the Webhook URL to your scraper or send sample JSON via Postman.
  4. Test the workflow by passing product and review URLs.
  5. Activate the workflow for continuous automated review screening.

What It Does

This workflow provides an automated pipeline to analyze product reviews and determine whether they may be fake or manipulated. It begins with a webhook that accepts product information and a scraper API URL. Using this information, the workflow fetches associated reviews.

Each review is then expanded into separate items and normalized to maintain a consistent structure. The workflow generates a hash for deduplication, preventing multiple entries of the same review. New reviews are stored in Airtable and subsequently analyzed by OpenAI. The resulting risk score, explanation and classification are saved back into Airtable.

If a review's score exceeds a predefined threshold, a structured Slack alert is sent to the moderation team. This ensures that high-risk reviews are escalated promptly while low-risk reviews are simply stored for recordkeeping.

Who’s It For

  • eCommerce marketplaces monitoring review integrity
  • Sellers seeking automated fraud detection for product reviews
  • SaaS platforms that accept user-generated reviews
  • Trust & Safety and compliance teams
  • Developers looking for an automated review-quality pipeline

Requirements

  • n8n (Cloud or Self-Hosted)
  • Airtable Personal Access Token
  • OpenAI API Key
  • Slack Bot Token or Webhook
  • Review Scraper API
  • Basic understanding of Airtable field setup

How It Works & How To Set Up

1. Receive Product Data

The workflow starts with the Webhook – Receive Product Payload, which accepts a list of products and their scraper URLs.

2. Extract and Process Each Product

Extract products separates the list into individual items. Process Each Product ensures that each product’s reviews are processed one at a time.

3. Fetch and Validate Reviews

Fetch Product Reviews calls the scraper API. IF – Has Reviews? determines whether any reviews were returned.

4. Expand and Normalize Reviews

Expand reviews[] to items splits reviews into individual items. Prepare Review Fields ensures consistent review structure.

5. Generate Review Hash

Generate Review Hash1 produces a deterministic hash based on review text, reviewer ID, and date.

6. Airtable Deduplication Check

Search Records by Hash checks whether the review already exists. Normalize Airtable Result cleans Airtable’s inconsistent empty output. Is New Review? decides if the review should be inserted or skipped.

7. Store New Reviews

Create Review Record inserts new reviews into Airtable.

8. AI-Based Fake Review Analysis

AI Fake Review Analysis sends relevant review fields to OpenAI. Parse AI Response ensures the output is valid JSON.

9. Update Airtable With AI Results

Update Review Record stores the AI’s score, classification, and reasoning.

10. Moderation Alert

Check Suspicious Score Threshold evaluates if the fake score exceeds a defined limit. If so, Send Moderation Alert posts a detailed message to Slack.

How To Customize Nodes

Fake Score Threshold Modify threshold in Check Suspicious Score Threshold.

Slack Message Format Adjust text fields in Send Moderation Alert.

AI Prompt Instructions Edit the instructions inside AI Fake Review Analysis.

Airtable Fields Update mappings in both Create Review Record and Update Review Record.

Additional Checks Insert enrichment steps before AI analysis, such as:

  • reviewer profile metadata
  • geolocation or reverse IP checks
  • keyword density analysis

Add-ons

  • Notion integration for long-term review case tracking
  • Jira or Trello integration for incident management
  • Automated sentiment tagging
  • Weekly review-risk summary reports
  • Google Sheets backup for archived reviews
  • Reviewer behavior modeling (number of reviews, frequency, patterns)

Use Case Examples

  1. Detecting manipulated Amazon product reviews.
  2. Flagging repetitive or bot-like reviews for Shopify stores.
  3. Screening mobile app reviews for suspicious content.
  4. Quality-checking user reviews on multi-vendor marketplaces.
  5. Monitoring competitor-driven false negative or positive reviews.

There can be many more scenarios where this workflow helps identify misleading product reviews.

Troubleshooting Guide

Issue Possible Cause Solution
No data after review fetch Scraper API returned empty response Validate scraper URL and structure
Duplicate reviews inserted Hash mismatch Ensure Generate Review Hash1 uses the correct fields
Slack alert not triggered Bot not added to channel Add bot to the target Slack channel
AI response fails to parse Model returned non-JSON response Strengthen "JSON only" prompt in AI analysis
Airtable search inconsistent Airtable returns empty objects Rely on Normalize Airtable Result for correction

Need Help

If you need assistance customizing this workflow, integrating additional systems or designing advanced review moderation solutions, our n8n workflow development team at WeblineIndia is available to help. We offer support for:

  • Workflow setup and scaling
  • Custom automation logic
  • AI-driven enhancements
  • Integration with third-party platforms
  • And so much more.

Feel free to contact us for guidance, implementation or to build similar automated systems tailored to your needs.

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 - Webhook – Receive Product Payload

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2.1

Block 2 - Process Each Product

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

Block 3 - Fetch Product Reviews

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 1

Block 4 - Extract products

Type / Role
n8n-nodes-base.splitOut - splitOut
Config choices
Version 1

Block 5 - IF – Has Reviews?

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

Block 6 - Expand reviews[] to items

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

Block 7 - Split review in batches

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

Block 8 - List Bases

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 9 - Search Records by Hash

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 10 - Normalize Airtable Result

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

Block 11 - Is New Review?

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

Block 12 - Create Review Record

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 13 - Update Review Record

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 14 - AI Fake Review Analysis

Type / Role
n8n-nodes-base.openAi - openAi
Config choices
Version 1

Block 15 - Parse AI Respons

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

Block 16 - Check Suspicious Score Threshold

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

Block 17 - Send Moderation Alert

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

Block 18 - Generate Review Hash1

Type / Role
n8n-nodes-base.function - function
Config choices
Version 1

Block 19 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 20 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 21 - Prepare Review Fields

Type / Role
n8n-nodes-base.set - set
Config choices
Version 1

Block 22 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 23 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 24 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

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

3. Summary Table

Workflow Detect fake product reviews with OpenAI and send alerts to Slack via Airtable
Complexity advanced
Nodes 27
Categories Market Research, AI Summarization
Author WeblineIndia
Published 25 Dec 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/12129/12129.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 fake product reviews with OpenAI and send alerts to Slack via Airtable do?

AI Powered Fake Review Detection Workflow Using n8n & Airtable This workflow automates the detection of potentially fake or manipulated product reviews using n8n, Airtable, OpenAI and Slack. It fet...

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.