FeedBlitz is a full service email marketing service provider (ESP) focused on simplifying our clients' business objectives. No limits, no overages, terrific value, outstanding deliverability, and real people on the phone to lend a hand when you need it
Go to siteThe FeedBlitz API allows developers to access the FeedBlitz service and build various integrations and applications on top of it. With the FeedBlitz API, you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
feedblitz: {
type: "app",
app: "feedblitz",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.feedblitz.com/f.api/user`,
params: {
key: `${this.feedblitz.$auth.api_key}`,
},
})
},
})
FeedBlitz uses API keys for authentication. When you connect your FeedBlitz account, Pipedream securely stores the keys so you can easily authenticate to FeedBlitz APIs in both code and no-code steps.
To retrieve your FeedBlitz API key,
* Navigate to your FeedBlitz account and sign in
* Go to “All Account Settings” on the top right > “Customization” > “My API Keys”