VoilaNorbert

Norbert is the ultimate lead generation tool with one of the best success rate to find any corporate email address.

Integrate the VoilaNorbert API with the Formatting API

Setup the VoilaNorbert API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate VoilaNorbert and Formatting remarkably fast. Free for developers.

Find Contact with the VoilaNorbert API

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

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Start Contact Search with the VoilaNorbert API

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

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
Verify Email with the VoilaNorbert API

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

 
Try it

Overview of VoilaNorbert

VoilaNorbert 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.

Connect VoilaNorbert

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})