Use this powerful n8n workflow to merge multiple RSS feeds, clean data using regex, filter for recent content (48 hours), and broadcast the curated list as Markdown messages via Telegram. A prime example of effective n8n templates.
Download this n8n workflow template and start using it instantly.
Content Curators: Individuals needing to monitor several specialized RSS feeds without manual checking.
Automated Download Users: Those tracking updates from specific torrent or media trackers.
Technical Users: Users looking for advanced examples of data manipulation, regex usage, and custom scripting within an n8n node.
Automation Enthusiasts: Anyone seeking production-ready n8n templates for timed data aggregation and notification.
Monitoring multiple high-volume RSS feeds manually is inefficient. This specialized n8n workflow solves this by providing a hands-off aggregation system. It runs on a defined schedule using the n8n trigger, pulls data from two distinct sources, standardizes the item titles (removing metadata like 'PACK' tags and extracting file sizes), and cleans the publication dates. Crucially, the workflow filters out older items, ensuring that only fresh, relevant content is processed. The result is a single, sorted, highly readable Markdown list delivered directly to a dedicated Telegram channel or chat. This use case demonstrates the robust data transformation capabilities of n8n, turning raw feed data into actionable notifications.
The entire process is initiated by the Schedule Trigger n8n node, set to run every 8 hours.
pubDate into a standardized Unix timestamp for easy comparison.pubDate is older than 48 hours (based on the current execution time). This ensures the delivered list is timely.pubDate, ensuring the newest items appear first.Title), creating the final message payload.To deploy this useful n8n workflow template, follow these steps:
Schedule Trigger (n8n trigger):
Function: Starts the n8n workflow automatically.
Key Configuration: Runs every 8 hours.
RSS Feed Read (RSS Olimpo & RSS Torrent):
Function: Fetches external content from the defined RSS URLs.
Key Configuration: Requires manual configuration of the feed URLs to integrate this n8n template with your sources.
Set (Edit Fields & Edit Fields1, n8n node):
Function: Cleans, extracts, and standardizes data fields using complex expressions and regex.
Key Configuration: Title fields use JavaScript .replace() methods to remove [PACK] and other tags, and .match() to extract file sizes from the HTML content. pubDate is converted to a Unix timestamp.
Filter (n8n node):
Function: Filters items based on recency.
Key Configuration: Passes items only if pubDate is greater than Date.now() - 48 hours (2 days).
Sort (n8n node):
Function: Orders the resulting list.
Key Configuration: Sorts items in descending order based on the numerical pubDate timestamp.
Code (Markdown list, custom n8n node):
Function: Customizes the output by escaping Markdown characters and constructing the final message list in the Telegram link format Text.
Key Configuration: Contains custom JavaScript for data assembly.
Telegram (n8n node):
Function: Sends the formatted message to a designated chat.
* Key Configuration: Uses a Markdown parsing mode and requires the appropriate Bot Token credential and Chat ID.
Automate PDF merging tasks using this robust n8n workflow. Download multiple remote files, use the ConvertAPI service, and save the resulting document automatically. Leverage this powerful n8n node integration.

Learn how to merge multiple PDF files using an n8n workflow template. This n8n node guide details downloading files, merging binary data, and writing the final PDF.

An essential n8n workflow for merging multiple local Excel files into a single multi-sheet document, including a dynamic summary sheet using the custom Code n8n node and the 'xlsx' library.

Learn how to build an advanced n8n workflow using custom scripting and iteration control. This n8n node combination merges data from multiple RSS feed reads into one output.

Use this core logic n8n workflow template to efficiently merge and combine two separate datasets based on a common matching key using the n8n Merge node.








































