RSS

Real Simple Syndication

Integrate the RSS API with the Infinity API

Setup the RSS API trigger to run a workflow which integrates with the Infinity API. Pipedream's integration platform allows you to integrate RSS and Infinity remarkably fast. Free for developers.

Create Item with Infinity API on New Item in Feed from RSS API
RSS + Infinity
 
Try it
Delete Item with Infinity API on New Item in Feed from RSS API
RSS + Infinity
 
Try it
Update Item with Infinity API on New Item in Feed from RSS API
RSS + Infinity
 
Try it
Create Item with Infinity API on New Item From Multiple RSS Feeds from RSS API
RSS + Infinity
 
Try it
Create Item with Infinity API on Random item from multiple RSS feeds from RSS API
RSS + Infinity
 
Try it
New Item in Feed from the RSS API

Emit new items from an RSS feed

 
Try it
New Item From Multiple RSS Feeds from the RSS API

Emit new items from multiple RSS feeds

 
Try it
New Item Created from the Infinity API

Emit new event when an item is created.

 
Try it
Random item from multiple RSS feeds from the RSS API

Emit a random item from multiple RSS feeds

 
Try it
New Item Finalized from the Infinity API

Emit new event when an item is finalized.

 
Try it
Create Item with the Infinity API

Create a new item. See the documentation

 
Try it
Merge RSS Feeds with the RSS API

Retrieve multiple RSS feeds and return a merged array of items sorted by date See documentation

 
Try it
Delete Item with the Infinity API

Delete a specific item. See the documentation

 
Try it
Update Item with the Infinity API

Update an existed item. See the documentation

 
Try it

Overview of RSS

The RSS app allows users to automatically fetch and parse updates from web feeds. This functionality is pivotal for staying abreast of content changes or updates from websites, blogs, and news outlets that offer RSS feeds. With Pipedream, you can harness the RSS API to trigger workflows that enable a broad range of automations, like content aggregation, monitoring for specific keywords, notifications, and data synchronization across platforms.

Connect RSS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module.exports = defineComponent({
  props: {
    rss: {
      type: "app",
      app: "rss",
    }
  },
  async run({steps, $}) {
    // Retrieve items from a sample feed
    const Parser = require('rss-parser');
    const parser = new Parser();
    
    const stories = []
    
    // Replace with your feed URL
    const url = "https://pipedream.com/community/latest.rss"
    
    const feed = await parser.parseURL(url);
    const { title, items } = feed
    this.title = title
    
    if (!items.length) {
      $end("No new stories")
    }
    
    this.items = items
  },
})

Overview of Infinity

The Infinity API allows you to interact programmatically with Infinity, a flexible project management platform. With the Infinity API on Pipedream, you can automate project and task management, synchronize data across multiple platforms, and streamline workflows by triggering actions within Infinity or responding to events in Infinity. Pipedream's serverless platform enables you to connect Infinity to hundreds of apps with minimal effort, empowering you to build custom integrations and automations that suit your team's needs.

Connect Infinity

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    infinity: {
      type: "app",
      app: "infinity",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.startinfinity.com/api/v2/profile`,
      headers: {
        Authorization: `Bearer ${this.infinity.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
        "Accept": `application/json`,
      },
    })
  },
})