LogoLogo
  • Docs
  • Connector Configuration
  • Knowledge Base
  • Changelog
  • Connector Configuration
  • ActiveCampaign
  • Airtable
  • Asana
  • AWS
    • AWS SNS
  • Azure Cognitive Services
  • Blackboard
  • CloudFlare
    • CloudFlare Lists
  • DeepAI
  • DocuSign
  • Dropbox
  • Facebook Business
  • Freshdesk
  • Google
  • Highrise
  • Hubspot
  • Imperva
  • Jira
  • Jotform
  • LinkedIn
  • Mailchimp
  • Microsoft
  • Microsoft Dynamics 365 CRM
  • Monday
  • Open AI
  • Pipedrive
  • Quickbooks
  • Redmine
  • Salesforce
  • Schoology
  • Screenshot API
  • ServiceNow
  • Shopify
  • Slack
  • Snowflake
  • Trello
  • Twilio
  • Twitter
  • Typeform
  • Utilities
    • AI
    • AppEvents
    • Controls
      • Condition
      • Counter
      • Digest
      • Each
      • Join
      • Join Each
      • On Start
      • Set Variable
      • Switch
    • Converters
      • Archive
      • CSV to HTML
      • CSV to JSON
      • CSV to XLSX
      • Data URI to File
      • HTML to CSV
      • HTML to JSON
      • HTML to XLSX
      • JSON to CSV
      • JSON to HTML
      • JSON to XLSX
      • XLSX to CSV
      • XLSX to HTML
      • XLSX to JSON
    • CSV
      • Add Column
      • Add Row
      • Add Rows
      • Create CSV
      • Delete Columns
      • Delete Rows
      • Export CSV
      • Get Cell
      • Get Row
      • Get Rows
      • Import CSV
      • Rename Column
      • Update Rows
    • Email
    • HTTP
      • Delete
      • Dynamic Webhook
      • GET
      • PATCH
      • POST
      • PUT
      • Response
      • Uptime
      • Webhook
    • Language
    • Tasks
      • Request Approval
      • Request Approval Email
    • Test
      • After All
      • Assert
      • Before All
      • Call Count
      • Join
      • Process E2E Results
      • Tick
    • Timers
      • Scheduler
      • Timer
      • Wait
    • Weather
    • XML
      • JSON to XML
      • Validate XML
      • XML to JSON
      • XPath
    • Storage
      • Clear
      • Find
      • Get
      • On Item Added
      • On Item Removed
      • On Item Updated
      • Remove
      • Save To File
      • Set
    • RSS
      • Get Feed
      • New Feed Item
    • FTP
      • Create Directory
      • Download File
      • Get File Info
      • New File
      • Remove Directory
      • List
      • Remove File
      • Rename File
      • Upload File
    • Forms
      • Form Action
      • Form Trigger
    • Filters
      • Contains
      • Equals
      • Greater Than
      • Identity
      • Is Not Empty
      • Less Than
      • Modulo
      • Not Equal
      • Range
    • Files
      • Archive File
      • Download File
      • Load File
      • Load File Lines
      • Remove File
      • Save File
  • Xero
  • Zendesk Chat
  • Zendesk Tickets
  • Zoho
Powered by GitBook
On this page
  • Overview
  • Usage
  • Notes

Was this helpful?

Export as PDF
  1. Utilities
  2. RSS

Get Feed

Overview

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.

Usage

This component fetches RSS feeds and outputs structured data for further processing in workflows, making it useful for content aggregation and real-time updates.

Input Ports

Port
Description

in

Receives the RSS feed URL to fetch the feed.

Output Ports

Port
Description

out

Emits the parsed RSS feed data, including feed details and items.

Properties

Property
Type
Description

url

string

The RSS feed URL to fetch.

Processing Logic

  1. Receives Feed URL: Accepts an input URL pointing to an RSS feed.

  2. Fetches Feed Data: Uses an RSS parser to retrieve and parse feed details.

  3. Extracts Key Information:

    • Feed title, description, and link.

    • Feed image details (if available).

    • Feed items including headlines, descriptions, and links.

  4. Emits Parsed Data: Outputs the structured feed data through the out port.

Output Data Schema

Property
Type
Description

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.

Notes

  • 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.

PreviousRSSNextNew Feed Item

Last updated 3 months ago

Was this helpful?