with Findymail and promptmate.io?
Creates a new list of contacts in Findymail. See the documentation
Finds an email address using a given full name and a website domain. See the documentation
Locates an email using a company's website. See the documentation
Get a list of all contact lists in Findymail. See the documentation
The Findymail API provides a way to enrich and validate email contacts. Leveraging Pipedream's capabilities, you can automate workflows that trigger on various events to lookup emails, auto-populate CRM fields, validate email data, or even enhance marketing lists with accurate contact information. Using Findymail's API in Pipedream, you can create intricate serverless workflows that react to various triggers, such as webhooks, scheduled timers, or actions from other apps, to integrate email data enrichment into your business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
findymail: {
type: "app",
app: "findymail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.findymail.com/api/credits`,
headers: {
Authorization: `Bearer ${this.findymail.$auth.api_key}`,
"Content-Type": `application/json`,
"Accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
promptmate_io: {
type: "app",
app: "promptmate_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.promptmate.io/v1/userInfo`,
headers: {
"x-api-key": `${this.promptmate_io.$auth.api_key}`,
},
})
},
})