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 Discord Bot API

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

Find Contact with VoilaNorbert API on New Message in Channel from Discord Bot API
Discord Bot + VoilaNorbert
 
Try it
Start Contact Search with VoilaNorbert API on New Message in Channel from Discord Bot API
Discord Bot + VoilaNorbert
 
Try it
Verify Email with VoilaNorbert API on New Message in Channel from Discord Bot API
Discord Bot + VoilaNorbert
 
Try it
Find Contact with VoilaNorbert API on New Forum Thread Message from Discord Bot API
Discord Bot + VoilaNorbert
 
Try it
Find Contact with VoilaNorbert API on New Guild Member from Discord Bot API
Discord Bot + VoilaNorbert
 
Try it
New Message in Channel from the Discord Bot API

Emit new event for each message posted to one or more channels

 
Try it
New Forum Thread Message from the Discord Bot API

Emit new event for each forum thread message posted. Note that your bot must have the MESSAGE_CONTENT privilege intent to see the message content, see the docs here.

 
Try it
New Guild Member from the Discord Bot API

Emit new event for every member added to a guild. See docs here

 
Try it
New Thread Message from the Discord Bot API

Emit new event for each thread message posted.

 
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
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
Add Role with the Discord Bot API

Assign a role to a user. Remember that your bot requires the MANAGE_ROLES permission. 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
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
Try it

Overview of VoilaNorbert

VoilaNorbert is the easiest way to find the most accurate email addresses and
contact info in a few seconds. Thanks to its powerful API, you can quickly
access information and create custom applications to help you get the data you
need and make the best use of that information.

The VoilaNorbert API can help you with many tasks, including:

  • Building contact pages and customer lists
  • Generating personalized lead reports
  • Creating targeted campaigns for customers and prospects
  • Improving customer segmentation and list management
  • Validating customer contact information
  • Enhancing customer data for use in marketing
  • Automating lead verification processes
  • Integrating email address data into customer relationship management (CRM)
    systems
  • Identifying customer contacts from web interactions
  • Enhancing existing customer contact databases with additional details

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 Discord Bot

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord Bot

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: {
    discord_bot: {
      type: "app",
      app: "discord_bot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        "Authorization": `Bot ${this.discord_bot.$auth.bot_token}`,
      },
    })
  },
})