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 Node API

Setup the VoilaNorbert API trigger to run a workflow which integrates with the Node API. Pipedream's integration platform allows you to integrate VoilaNorbert and Node 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
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
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
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}`,
      },
    })
  },
})

Overview of Node

Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.

This includes installing NPM packages, within your code without having to manage a package.json file or running npm install.

Below is an example of installing the axios package in a Pipedream Node.js code step. Pipedream imports the axios package, performs the API request, and shares the response with subsequent workflow steps:

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.