Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Estimates a reliability score based on ZeroBounce's AI for the provided email. See the documentation
Downloads the validation results for a file submitted using sendfile API. See the documentation
Performs email validation on all the addresses contained in a provided file. See the documentation
The ZeroBounce API provides email verification services that help improve email deliverability by removing invalid or risky email addresses from your lists. When integrated with Pipedream, you can automate workflows to clean your mailing lists, validate subscribers in real-time, and enrich your contacts. Pipedream's serverless platform facilitates the running of code that interacts with the ZeroBounce API to execute these tasks based on various triggers and actions from other integrated services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zerobounce: {
type: "app",
app: "zerobounce",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.zerobounce.net/v2/getcredits`,
params: {
api_key: `${this.zerobounce.$auth.api_key}`,
},
})
},
})