Norbert is the ultimate lead generation tool with one of the best success rate to find any corporate email address.
Go to siteVoilaNorbert is a potent tool for finding and verifying email addresses. With its API, you can automate processes like enriching leads with verified contact information, streamlining your email outreach, and maintaining the health of your email lists. The API's main features include searching for email addresses based on names and domains, verifying email deliverability, and managing your contacts. When used within Pipedream, you can leverage these capabilities to create workflows that respond to events, integrate with other services, and process data in real time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
voilanorbert: {
type: "app",
app: "voilanorbert",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.voilanorbert.com/2018-01-08/account/`,
auth: {
username: ``,
password: `${this.voilanorbert.$auth.api_key}`,
},
})
},
})
Lead Enrichment Workflow: Triggered by a new entry on a Google Sheet (containing names and companies), this workflow uses VoilaNorbert to find corresponding email addresses, verifies them to ensure deliverability, and then updates the Google Sheet with the new data. This automation keeps your lead database fresh and actionable.
Email Verification on Signup: When a new user signs up through a website form, VoilaNorbert is employed to verify the email address provided. If verified, the user's information is added to a CRM like Salesforce, and a welcome email is sent via SendGrid. This process ensures that you're capturing genuine leads without manual vetting.
Periodic Email List Cleaning: A scheduled workflow runs monthly, fetching email addresses from an email marketing platform like Mailchimp. It uses VoilaNorbert to verify and clean the list, removing invalid emails automatically. The cleaned list is then re-uploaded to Mailchimp, optimizing your email campaign's deliverability and engagement rates.
This action returns a specific contact. The object email is either null when the email is not found, or contains an object with at least email (the email string) and the score. See the docs here
Search emails are based on the full name plus the domain or company name. When your account does not have sufficient credits an HTTP status code of 402 is returned. Also, take into consideration that we check the domain for its validity. So even if you provide a correct name+domain set, we may return a HTTP status code of 400 for the domain if we can't locate it. See the docs here
Verifies the given list of emails. In case your account does not have a sufficient Verify API balance the service will try to auto refill the balance by charging using the billing details of the account. If it fails to charge, an HTTP status code of 402 will be returned. See the docs here
VoilaNorbert uses API keys for authentication. When you connect your VoilaNorbert account, Pipedream securely stores the keys so you can easily authenticate to VoilaNorbert APIs in both code and no-code steps.
You can find your API Key on the VoilaNorbert integration page.