import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emaillistverify: {
type: "app",
app: "emaillistverify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apps.emaillistverify.com/api/verifyEmail`,
params: {
secret: `${this.emaillistverify.$auth.api_key}`,
email: `test@example.com`,
},
})
},
})
Generate a series of potential email addresses by synthesizing first names, last names, and company domains. See the documentation
EmailListVerify uses API keys for authentication. When you connect your EmailListVerify account, Pipedream securely stores the keys so you can easily authenticate to EmailListVerify APIs in both code and no-code steps.