with Emailable and Daktela?
Verifies a batch of emails, up to 50,000 per batch. See the documentation
Verifies a single email address using Emailable. See the documentation
The Emailable API offers robust email verification services, allowing you to improve deliverability and protect your sender reputation by validating email addresses in real-time. With Pipedream, you can integrate the Emailable API into serverless workflows, automating the process of cleaning your mailing lists, triggering actions based on email verification results, and syncing data across multiple platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emailable: {
type: "app",
app: "emailable",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.emailable.com/v1/verify`,
params: {
email: `sergio@pipekit.com`,
api_key: `${this.emailable.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
daktela: {
type: "app",
app: "daktela",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.daktela.$auth.instance_url}/api/v6/whoim.json`,
params: {
accessToken: `${this.daktela.$auth.access_token}`,
},
})
},
})