Get Links from RSS

The Get Links from RSS node enables you to extract links and content from RSS feeds.

Overview

This node helps you:

  • Parse RSS feed URLs
  • Extract article links
  • Get feed metadata
  • Filter content by date
  • Handle multiple feed formats

Configuration

ParameterTypeDescription
Feed URLStringThe RSS feed URL to process
Max ItemsNumberMaximum number of items to fetch
Date FilterObjectOptional date range filter
Include ContentBooleanWhether to include full content

Output

The node returns:

  • List of extracted links
  • Article metadata
  • Publication dates
  • Feed information
  • Error messages if any

Example Usage

{
  "feed_url": "https://example.com/feed.xml",
  "max_items": 10,
  "date_filter": {
    "start": "2024-01-01",
    "end": "2024-12-31"
  },
  "include_content": true
}