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