npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-betterenrich

v0.4.0

Published

N8n node for BetterEnrich - Find work emails, personal emails, mobile phone numbers, and more data enrichment operations

Readme

n8n-nodes-betterenrich

n8n-nodes-betterenrich License Downloads

This is an n8n community node that integrates with BetterEnrich API for data enrichment operations. It allows you to find work emails, personal emails, mobile phone numbers, and perform various other data enrichment tasks within your n8n workflows.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes in your n8n instance
  2. Select Install
  3. Enter n8n-nodes-betterenrich as the npm package name
  4. Agree to the risks of using community nodes
  5. Select Install

After installation restart n8n to register the node.

Manual Installation

To get started install the package in your n8n root directory:

npm install n8n-nodes-betterenrich

For Docker-based deployments add the following line before the font installation command in your n8n Dockerfile:

RUN cd /usr/local/lib/node_modules/n8n && npm install n8n-nodes-betterenrich

Configuration

Before using this node, you need to configure your BetterEnrich API credentials:

  1. Create a new credential of type BetterEnrich API
  2. Enter your API key from your BetterEnrich dashboard
  3. Test the connection to verify your credentials

Operations

This node supports the following BetterEnrich operations:

Work Email

  • Find: Create a task to find work email addresses
  • Get Result: Retrieve results from a find work email task

Personal Email

  • Find: Create a task to find personal email addresses
  • Get Result: Retrieve results from a find personal email task

Personal Email Bulk

  • Find Bulk: Process multiple LinkedIn URLs for personal email finding
  • Get Bulk Result: Retrieve results from bulk personal email tasks

Mobile Phone Number

  • Find: Create a task to find mobile phone numbers
  • Get Result: Retrieve results from a find mobile phone task

Google Ads Check

  • Check: Verify if a website is running Google Ads

Facebook Ads Check

  • Check: Verify if a Facebook page is running Facebook Ads

Social Media URLs

  • Find: Extract social media URLs from a company website

Normalize Company Name

  • Normalize: Standardize company name formatting

Normalize Person Name

  • Normalize: Standardize person name formatting

Find Website from Company

  • Find: Discover company websites from company names

Find LinkedIn Profile by Email

  • Find: Locate LinkedIn profiles using email addresses

Find LinkedIn Profile by Name

  • Find: Locate LinkedIn profiles using names and company information

Check ESP

  • Check: Identify Email Service Provider from website or email

Check DNC List

  • Check: Verify if US phone numbers are on Do Not Call lists

Verify Catch-all Email

  • Verify: Validate catch-all email addresses
  • Get Result: Retrieve verification results

Verify Normal Email

  • Verify: Validate normal email addresses using Million Verifier

Check Gender

  • Check: Determine gender from full names

Usage Examples

Find Work Email

{
  "nodes": [
    {
      "parameters": {
        "resource": "workEmail",
        "operation": "find",
        "full_name": "John Smith",
        "company_domain": "example.com"
      },
      "type": "n8n-nodes-betterenrich.betterEnrich",
      "typeVersion": 1,
      "position": [250, 300]
    }
  ]
}

Check Gender from Name

{
  "nodes": [
    {
      "parameters": {
        "resource": "checkGender",
        "operation": "check",
        "FullName": "Alex Johnson"
      },
      "type": "n8n-nodes-betterenrich.betterEnrich",
      "typeVersion": 1,
      "position": [250, 300]
    }
  ]
}

Verify Email Address

{
  "nodes": [
    {
      "parameters": {
        "resource": "verifyNormalEmail",
        "operation": "verify",
        "email": "[email protected]"
      },
      "type": "n8n-nodes-betterenrich.betterEnrich",
      "typeVersion": 1,
      "position": [250, 300]
    }
  ]
}

Error Handling

The node provides comprehensive error handling with descriptive messages:

  • Authentication Errors: Invalid API key or permissions
  • Rate Limiting: API quota exceeded
  • Validation Errors: Invalid input parameters
  • Network Errors: Connection timeouts or failures
  • API Errors: Service-specific error responses

Async Operations

Many BetterEnrich operations are asynchronous. For these operations:

  1. Use the Find operation to create a task (returns a task ID)
  2. Use the Get Result operation with the task ID to retrieve results
  3. Check the status field in the response:
    • pending: Task is queued
    • processing: Task is being processed
    • completed: Results are available
    • failed: Task failed (check error message)

Webhook Support

For asynchronous operations, you can provide a webhook URL to receive notifications when tasks complete, eliminating the need to poll for results.

Rate Limits

BetterEnrich API has rate limits. The node handles rate limiting gracefully and provides appropriate error messages when limits are exceeded.

Compatibility

  • n8n version: 0.198.0 or later
  • Node.js version: 18.10 or later

Resources

Version History

0.1.0

  • Initial release
  • Support for all BetterEnrich API operations
  • Comprehensive error handling and validation
  • Async operation support with webhooks

License

MIT

Support

For issues related to this node:

For BetterEnrich API support:

For n8n support: