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-quickenrich

v0.1.2

Published

n8n community node for QuickEnrich API - Email enrichment and employee data search

Readme

n8n-nodes-quickenrich

This is an n8n community node for integrating with the QuickEnrich API. It provides access to QuickEnrich's email enrichment and employee data search platform, allowing you to find employee contact information directly from n8n workflows.

Installation

Community Nodes (Recommended)

For users on n8n v0.187.0+, install directly through the n8n interface:

  1. Go to Settings > Community Nodes
  2. Click Install
  3. Enter n8n-nodes-quickenrich
  4. Click Download

Manual Installation

npm install n8n-nodes-quickenrich

Quick Setup

  1. Get API Key: Go to QuickEnrich Dashboard → Settings → API
  2. Add Node: In n8n, search for "QuickEnrich" in the node palette
  3. Configure Credentials: Enter your QuickEnrich API key
  4. Select Search Method: Choose between LinkedIn URL or Company + Name search

Features

🔍 Employee Data Search: Find employee contact information using two search methods 📧 Email Enrichment: Get verified email addresses and contact details 🎯 Exact Match Search: Precise matching using LinkedIn URLs or company + name combinations ⚡ Simple Integration: Single-endpoint API with straightforward parameters 🔒 Secure Authentication: API key-based authentication with proper credential management

Supported Operations

🔍 Employee Search

Search for employee data using one of two methods:

Method 1: LinkedIn URL Search

  • LinkedIn URL: Search by LinkedIn profile URL (exact match)
  • Returns complete employee profile including email, phone, title, and company information

Method 2: Company + Name Search

  • Company URL: Company website URL (exact match)
  • First Name: Employee first name (exact match)
  • Last Name: Employee last name (exact match)
  • Returns complete employee profile when all three parameters match

Response Data

The node returns comprehensive employee information including:

  • First Name
  • Last Name
  • Job Title
  • Email Address
  • Phone Number
  • LinkedIn Profile URL
  • Email Verification Date
  • Company URL
  • Company Name
  • Email Domain

Usage Examples

Example 1: Search by LinkedIn URL

Input:
- Search Method: LinkedIn URL
- LinkedIn URL: https://linkedin.com/in/johndoe

Output:
{
  "first_name": "John",
  "last_name": "Doe",
  "title": "Senior Software Engineer",
  "email": "[email protected]",
  "employee_phone": "+1-555-0123",
  "employee_linkedin": "https://linkedin.com/in/johndoe",
  "email_verification_date": "2024-01-15",
  "company_url": "https://techcorp.com",
  "company_name": "Tech Corp",
  "email_domain": "company.com"
}

Example 2: Search by Company + Name

Input:
- Search Method: Company + Name
- Company URL: https://techcorp.com
- First Name: John
- Last Name: Doe

Output:
{
  "first_name": "John",
  "last_name": "Doe",
  "title": "Senior Software Engineer",
  "email": "[email protected]",
  ...
}

Example 3: Bulk Enrichment Workflow

  1. Trigger: Schedule or webhook
  2. Read CSV: Load list of LinkedIn URLs
  3. QuickEnrich: Search employee data for each URL
  4. Filter: Remove entries without email addresses
  5. Write to Database: Store enriched data

Error Handling

The node handles common API errors gracefully:

  • 401 Unauthorized: Invalid API key - check your credentials
  • 429 Too Many Requests: Rate limit exceeded (1000 requests/minute)
  • 400 Bad Request: Invalid parameters or missing required fields

Enable "Continue on Fail" in the node settings to handle errors without stopping the workflow.

Requirements

  • n8n v0.187.0 or higher
  • QuickEnrich account with API access
  • Valid QuickEnrich API key

API Documentation

For detailed API information, visit the QuickEnrich API Documentation.

Rate Limits

  • Default: 1000 requests per minute per API key
  • Rate limit information is included in response headers
  • Contact QuickEnrich support for custom rate limits

Support

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Changelog

0.1.0 (Initial Release)

  • Employee search by LinkedIn URL
  • Employee search by Company + Name
  • Comprehensive error handling
  • Rate limit support
  • Full API response data