with Instasent and efinder?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
instasent: {
type: "app",
app: "instasent",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.instasent.com/organization/account`,
headers: {
Authorization: `Bearer ${this.instasent.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})
The efinder API allows you to search various databases for email addresses associated with a given domain. It's a tool tailored for those in sales, marketing, and recruitment who need to find contact information quickly and reliably. Integrating this API into Pipedream opens up possibilities for automating the process of lead generation, enriching contact lists, or syncing found emails to CRMs and other marketing tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
efinder: {
type: "app",
app: "efinder",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://efinder.io/api/v1/get-lists`,
params: {
api_key: `${this.efinder.$auth.api_key}`,
},
})
},
})