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.
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}`,
},
})
},
})
Automated Article Digest Email
Content Sharing Workflow
Sync Read Articles to Notion
Emit new event when a new item is liked. See the docs here
Emit new event when a new item is saved. See the docs here
Emit new event when a new search is created. See the docs here
Return all subscriptions. See the docs here
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.