RSS Connector
The New Feed Item Component triggers whenever a new RSS feed item is detected from a given URL, allowing real-time updates and content automation.
This component monitors an RSS feed and emits new items as they appear, making it ideal for content tracking and automated notifications.
url
string
The RSS feed URL to monitor.
out
Emits new RSS feed items as they appear.
Monitors Feed URL: Periodically checks the RSS feed for new items.
Tracks Seen Items: Maintains a state of previously fetched items.
Detects New Items: Compares the latest items with stored history.
Emits New Data:
If new items are found, they are sent through the out
port.
The component updates its stored history of seen items.
title
string
The title of the feed item.
link
string
The URL of the feed item.
pubDate
string
The publication date of the item.
content
string
The full content of the item.
contentSnippet
string
A short snippet of the item content.
guid
string
A unique identifier for the item.
categories
array
Categories associated with the item.
isoDate
string
The publication date in ISO 8601 format.
Real-Time Content Updates: Detects and processes new feed items dynamically.
Avoids Duplicate Processing: Ensures only new items are emitted.
Ideal for News & Content Aggregation: Useful for tracking blogs, articles, and updates.
This component is essential for workflows requiring real-time RSS monitoring and automated content retrieval.
The Get Feed Component retrieves and parses an RSS feed from a given URL, extracting key information such as feed title, description, and individual feed items.
This component fetches RSS feeds and outputs structured data for further processing in workflows, making it useful for content aggregation and real-time updates.
in
Receives the RSS feed URL to fetch the feed.
out
Emits the parsed RSS feed data, including feed details and items.
url
string
The RSS feed URL to fetch.
Receives Feed URL: Accepts an input URL pointing to an RSS feed.
Fetches Feed Data: Uses an RSS parser to retrieve and parse feed details.
Extracts Key Information:
Feed title, description, and link.
Feed image details (if available).
Feed items including headlines, descriptions, and links.
Emits Parsed Data: Outputs the structured feed data through the out
port.
feedUrl
string
The URL of the fetched feed.
title
string
The title of the RSS feed.
description
string
The description of the RSS feed.
link
string
The main link to the RSS feed.
items
array
List of feed items, each containing title, description, and link.
image.link
string
The link to the feed's image (if available).
image.url
string
The URL of the feed's image.
image.title
string
The title of the feed's image.
Supports Standard RSS Feeds: Parses commonly used RSS formats.
Real-Time Content Retrieval: Useful for monitoring and aggregating content updates.
Structured Data Output: Provides a clean JSON representation of the feed for easy integration.
This component is ideal for workflows requiring automated RSS feed processing, news aggregation, and content distribution.