Feedbin

Modern RSS feed reader

Integrate the Feedbin API with the Schedule API

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

Get subscriptions with Feedbin API on Daily schedule from Schedule API
Schedule + Feedbin
 
Try it
Get subscriptions with Feedbin API on Monthly schedule from Schedule API
Schedule + Feedbin
 
Try it
Get subscriptions with Feedbin API on Schedule based on a custom interval from Schedule API
Schedule + Feedbin
 
Try it
Get subscriptions with Feedbin API on Weekly schedule from Schedule API
Schedule + Feedbin
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Liked Item from the Feedbin API

Emit new event when a new item is liked. See the docs here

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New Saved Item from the Feedbin API

Emit new event when a new item is saved. See the docs here

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Get Subscriptions with the Feedbin API

Return all subscriptions. See the docs here.

 
Try it

Overview of Feedbin

The Feedbin API provides an interface to manage and interact with a user's RSS feed subscriptions and articles. By integrating with Pipedream, you can leverage this API to create automation workflows that enhance your reading experience, keep you informed, and integrate your favorite feeds with other services. With Pipedream's serverless platform, you can set up triggers based on new articles, organize content, and synchronize your Feedbin data across multiple applications.

Connect Feedbin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    feedbin: {
      type: "app",
      app: "feedbin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.feedbin.com/v2/authentication.json`,
      auth: {
        username: `${this.feedbin.$auth.email}`,
        password: `${this.feedbin.$auth.password}`,
      },
    })
  },
})

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.