with BrandMentions and BetterContact?
The BrandMentions API lets you monitor and engage with online conversations about your brand in real-time. It provides insights into brand mentions across various channels, including social media, blogs, forums, and news sites. Pipedream serves as a powerful platform, enabling you to build automated workflows that respond to brand mentions, giving you the ability to track sentiment, identify influencers, and manage your brand’s online reputation efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
brandmentions: {
type: "app",
app: "brandmentions",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.brandmentions.com/command.php`,
params: {
command: `ListProjects`,
api_key: `${this.brandmentions.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bettercontact: {
type: "app",
app: "bettercontact",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.bettercontact.rocks/api/v2/account`,
params: {
api_key: `${this.bettercontact.$auth.api_key}`,
email: `${this.bettercontact.$auth.email}`,
},
})
},
})