Skip to main content

Analyze real estate RSS deals with Groq, Google Sheets and Gmail

Workflow preview

Workflow preview
100%
Analyze real estate RSS deals with Groq, Google Sheets and Gmail preview
Open on n8n.io

1. Workflow Overview

Real Estate News RSS to AI Deal Analyzer This workflow acts as a 24/7 digital real estate scout. It automatically monitors multiple RSS news feeds, filters out stories you have already seen, uses G...

Best for

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

Tools used

n8n-nodes-base.code, n8n-nodes-base.googlesheets, n8n-nodes-base.rssfeedread, n8n-nodes-base.splitinbatches, n8n-nodes-base.wait, @n8n/n8n-nodes-langchain.chainllm, @n8n/n8n-nodes-langchain.lmchatgroq, n8n-nodes-base.if

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
Analyze real estate RSS deals with Groq, Google Sheets and Gmail
Workflow name
Analyze real estate RSS deals with Groq, Google Sheets and Gmail

Real Estate News RSS to AI Deal Analyzer

This workflow acts as a 24/7 digital real estate scout. It automatically monitors multiple RSS news feeds, filters out stories you have already seen, uses Groq-powered AI to score the investment potential of new articles and saves high-value opportunities to a Google Sheet while alerting you via Gmail.

Quick Start Guide

  • Import: Upload the JSON file into your n8n canvas.
  • Authenticate: Connect your Google Sheets, Groq and Gmail credentials.
  • Configure Sheet: Ensure your Google Sheet has a header named Link in the first tab.
  • Set Recipient: Open the Send Deal Alert Email node and enter your email address in the "To" field.
  • Run: Click Start Workflow to begin fetching and analyzing today's news.

What It Does

The workflow begins by retrieving a list of previously "seen" articles from your Google Sheet to prevent duplicate work. It then visits a list of RSS news sources (defined in a JavaScript node) to find the latest real estate headlines. Using a specialized filtering script, it compares the new headlines against your existing list, ensuring that only fresh, unread news moves forward.

Once new articles are identified, the workflow uses the Groq LLM Engine to perform a deep "Deal Opportunity" analysis. The AI reads the news snippet, assigns a score from 1 to 10 based on investment potential and provides a concise reason for that score. This turns a simple headline into a structured data point.

In the final stage, the workflow applies a quality filter. If the AI determines a deal is high-potential (Score ≥ 8), the workflow saves the title, link and AI reasoning to your Google Sheet. Simultaneously, it fires off a Gmail notification to your inbox so you can act on the lead before the rest of the market.

Who’s It For

  • Real Estate Investors looking for early signals on price drops or new project launches.
  • Property Brokers who need to stay informed about local market shifts without reading hundreds of articles manually.
  • Investment Analysts who want a structured database of market news and AI-generated sentiment scores.
  • Operations Teams looking to automate market research and lead generation.

Requirements to use this workflow

  • n8n Instance: (Self-hosted or Cloud).
  • Google Account: To access Google Sheets and send Gmail alerts.
  • Groq API Key: To power the AI analysis (supports high-speed LLM processing).
  • Target RSS Feeds: URLs of news sites or Google News RSS queries.

How It Works & Set Up

1. Preconditions & Spreadsheet Setup

Before running the workflow, create a Google Spreadsheet. In the first sheet (tab), you must create a header named Link. You may also add headers for Title, PubDate and Reason to keep your data organized. The workflow uses the "Link" column to remember which articles it has already processed.

2. Configure RSS Sources

Open the RSS Sources node. You will see a small snippet of JavaScript code. You can change the URLs here to target your specific location or niche (e.g., changing "Ahmedabad" to "New York" or "Commercial Real Estate").

3. Setup AI & Throttle

The workflow includes a Throttle API Calls node. This is set to 3 seconds by default. This ensures you do not hit "Rate Limits" on your Groq account if the RSS feed returns dozens of articles at once.

4. Logic & Filtering

  • Fetch Existing Deals: Pulls your "already seen" list from Google Sheets.
  • Filter New Articles: A JavaScript node that checks if the current RSS link exists in your sheet.
  • Analyze Deal Opportunity: The core AI prompt that tells the LLM to act as a Real Estate Analyst.

How To Customize Nodes

  • Change the Score Threshold:

Open the Filter High Opportunity node. You can change the value from 8 to a lower number (like 5) if you want to see more frequent, moderate-potential leads.

  • Modify AI Persona:

Edit the Analyze Deal Opportunity node to ask the AI to look for specific things, like "Commercial warehouse space" or "Foreclosure notices."

  • Update Email Content:

The Send Deal Alert Email node can be customized with your own branding or specific subject lines.

Add‐ons

  • Multi-Recipient Support:

You can add a Set node before the Gmail step to manage a list of emails if you need to alert a whole team.

  • Automated Scheduling:

Replace the Manual Trigger with a Schedule Trigger to run this every morning at 8:00 AM automatically.

  • SMS Alerts:

Add a Twilio or WhatsApp node after the high-score filter to get instant text notifications for the best deals.

Use Case Examples

  • Market Sentiment Tracking:

Scoring news daily to see if a specific city is trending toward a "Buyer's Market."

  • New Launch Monitoring:

Automatically capturing every new residential project announced in a specific region.

  • Price Drop Alerts:

Using specific Google News RSS queries to find distressed property sales.

  • Competitor Research:

Monitoring news related to specific developers or real estate firms.

  • Historical Archiving:

Building a long-term database of real estate news and AI analysis for future trend reporting.

Troubleshooting Guide

Issue Possible Cause Solution
Workflow skips all news Deduplication logic is too strict Check if your Google Sheet "Link" column is filled with old data; clear it to reset the filter.
AI returns "No Response" Groq model naming or API key Ensure your Groq model is set to a valid ID (e.g., llama3-8b-8192) and your key is active.
Google Sheets Error Missing Column Headers Ensure your spreadsheet has a header named exactly "Link" (case sensitive).
Gmail fails to send OAuth Scopes Re-connect your Google account in n8n and ensure the "Gmail API" is enabled in your Google Cloud Console.

Need Help?

Setting up AI-driven market monitors can be a competitive advantage, but the technical setup needs to be perfect. If you need help fine-tuning the AI prompts, adding custom RSS sources or connecting this to your existing CRM, our experts at WeblineIndia are here to assist.

Contact WeblineIndia today to build your custom business automation or to refine this workflow for your specific market!

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 - RSS Sources

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

Block 2 - Fetch Existing Deals (Sheet)

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

Block 3 - Fetch RSS News Feed

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

Block 4 - Filter New Articles

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

Block 5 - Process Articles Loop

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

Block 6 - Throttle API Calls

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

Block 7 - Analyze Deal Opportunity

Type / Role
@n8n/n8n-nodes-langchain.chainLlm - chainLlm
Config choices
Version 1

Block 8 - Groq LLM Engine

Type / Role
@n8n/n8n-nodes-langchain.lmChatGroq - lmChatGroq
Config choices
Version 1

Block 9 - Parse AI Response JSON

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

Block 10 - Filter High Opportunity (Score ≥ 8)

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

Block 11 - Save High-Value Deals (Sheet)

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

Block 12 - Sticky Note

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

Block 13 - Loop Over Sources

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

Block 14 - Sticky Note1

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

Block 15 - Sticky Note2

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

Block 16 - Sticky Note3

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

Block 17 - Sticky Note4

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

Block 18 - Format & Enrich Deal Data

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

Block 19 - Send Deal Alert Email

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

Block 20 - Start Workflow

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

3. Summary Table

Workflow Analyze real estate RSS deals with Groq, Google Sheets and Gmail
Complexity advanced
Nodes 20
Categories Market Research, AI Summarization
Author WeblineIndia
Published 08 Apr 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/14900/14900.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 Analyze real estate RSS deals with Groq, Google Sheets and Gmail do?

Real Estate News RSS to AI Deal Analyzer This workflow acts as a 24/7 digital real estate scout. It automatically monitors multiple RSS news feeds, filters out stories you have already seen, uses G...

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.