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 OpenAI (ChatGPT) API

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

Find Contact with VoilaNorbert API on New File Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + VoilaNorbert
 
Try it
Find Contact with VoilaNorbert API on New Fine Tuning Job Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + VoilaNorbert
 
Try it
Find Contact with VoilaNorbert API on New Run State Changed from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + VoilaNorbert
 
Try it
Start Contact Search with VoilaNorbert API on New File Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + VoilaNorbert
 
Try it
Start Contact Search with VoilaNorbert API on New Fine Tuning Job Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + VoilaNorbert
 
Try it
New File Created from the OpenAI (ChatGPT) API

Emit new event when a new file is created in OpenAI. See the documentation

 
Try it
New Fine Tuning Job Created from the OpenAI (ChatGPT) API

Emit new event when a new fine-tuning job is created in OpenAI. See the documentation

 
Try it
New Run State Changed from the OpenAI (ChatGPT) API

Emit new event every time a run changes its status. See the documentation

 
Try it
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
Chat with the OpenAI (ChatGPT) API

The Chat API, using the gpt-3.5-turbo or gpt-4 model. See docs here

 
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
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

 
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 OpenAI (ChatGPT)

OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:

Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:

Connect OpenAI (ChatGPT)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    openai: {
      type: "app",
      app: "openai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.openai.com/v1/models`,
      headers: {
        Authorization: `Bearer ${this.openai.$auth.api_key}`,
      },
    })
  },
})