Feedbin

Modern RSS feed reader

Go to site
Explore
/
Apps
/
Feedbin

Feedbin API Integrations

Build and run workflows using the Feedbin API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Feedbin API, you can build a number of things, including:

  • A RSS feed reader
  • A news aggregator
  • A podcast manager
  • A research tool
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}`,
      },
    })
  },
})
Get subscriptions with Feedbin API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Feedbin
 
Try it
Send Message (Advanced) with Discord Webhook API on New Search from Feedbin API
Feedbin + Discord Webhook
 
Try it
Get subscriptions with Feedbin API on New Item in Feed from RSS API
RSS + Feedbin
 
Try it
Get subscriptions with Feedbin API on New Message from Discord API
Discord + Feedbin
 
Try it
Get subscriptions with Feedbin API on New Message In Channels from Slack API
Slack + Feedbin
 
Try it
New Liked Item from the Feedbin API

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

 
Try it
New Saved Item from the Feedbin API

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

 
Try it
New Search from the Feedbin API

Emit new event when a new search is created. See the docs here

 
Try it
Get Subscriptions with the Feedbin API

Return all subscriptions. See the docs here.

 
Try it

Authentication

Feedbin uses API keys for authentication. When you connect your Feedbin account, Pipedream securely stores the keys so you can easily authenticate to Feedbin APIs in both code and no-code steps.