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

@wizaco/n8n-nodes-wiza

v0.1.4

Published

n8n node for Wiza contact enrichment API

Readme

n8n-nodes-wiza

An n8n community node for integrating with the Wiza contact enrichment API. Find email addresses, phone numbers, and LinkedIn profiles for your prospects using multiple data sources.

Wiza Logo

Features

🔍 Email Finder

Find verified work and personal email addresses using:

  • LinkedIn profile URLs
  • Contact details (name + company/domain)
  • Multiple data points for best results

📞 Phone Finder

Find mobile and direct dial phone numbers using:

  • Email addresses
  • LinkedIn profile URLs
  • Contact details (name + company/domain)
  • Multiple data points for best results

💼 LinkedIn Profile Finder

Find LinkedIn profiles and extract key details using:

  • Email addresses
  • LinkedIn URLs (for enhanced profile data)
  • Contact details (name + company/domain)
  • Multiple data points for best results

Installation

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes in your n8n instance
  2. Select Install a community node
  3. Enter @wizaco/n8n-nodes-wiza
  4. Click Install

Manual Installation

# In your n8n root directory
npm install @wizaco/n8n-nodes-wiza

Docker

# Using environment variable
N8N_NODES_INCLUDE=@wizaco/n8n-nodes-wiza

# Or in docker-compose.yml
environment:
  N8N_NODES_INCLUDE: "@wizaco/n8n-nodes-wiza"

Setup

1. Get Your API Key

  1. Sign up at wiza.co
  2. Navigate to Settings > API
  3. Generate your API key

2. Configure Credentials

  1. In n8n, go to Credentials
  2. Click Create New
  3. Search for Wiza API
  4. Enter your API key
  5. Click Save

Usage

Basic Email Finding

{
  "operation": "Email Finder",
  "inputType": "Contact Details", 
  "fullName": "John Doe",
  "company": "Acme Corp"
}

Phone Number Lookup

{
  "operation": "Phone Finder",
  "inputType": "Email",
  "email": "[email protected]"
}

LinkedIn Profile Enhancement

{
  "operation": "LinkedIn Profile Finder", 
  "inputType": "All Fields",
  "email": "[email protected]",
  "fullName": "John Doe",
  "company": "acme.com"
}

Input Types

📧 Email

Provide an email address to find phone numbers or LinkedIn profiles.

🔗 LinkedIn URL

Provide a LinkedIn profile URL to find emails, phone numbers, or enhanced profile data.

👤 Contact Details

Provide name and company/domain to find emails, phone numbers, or LinkedIn profiles.

🎯 All Fields (Recommended)

Provide any combination of email, LinkedIn URL, name, and company for best results. All fields are optional - the more data you provide, the better the results.

Response Data

Email Finder Response

{
  "email": "[email protected]",
  "email_type": "work", 
  "email_status": "valid",
  "name": "John Doe",
  "company": "Acme Corp",
  "title": "CEO",
  "linkedin_profile_url": "https://linkedin.com/in/johndoe"
}

Phone Finder Response

{
  "phone_number": "+1234567890",
  "phone_status": "found",
  "mobile_phone": "+1234567890", 
  "name": "John Doe",
  "company": "Acme Corp",
  "email": "[email protected]"
}

LinkedIn Profile Finder Response

{
  "linkedin_profile_url": "https://linkedin.com/in/johndoe",
  "name": "John Doe", 
  "title": "CEO",
  "company": "Acme Corp",
  "location": "New York, NY",
  "company_domain": "acme.com"
}

Configuration Options

Timeout

  • Default: 300 seconds (5 minutes)
  • Description: Maximum time to wait for enrichment completion
  • Range: 30-600 seconds

Email Type (Email Finder only)

Error Handling

The node handles various error scenarios:

  • Invalid API Key: Check your credentials
  • Rate Limiting: Automatic retry with backoff
  • Timeout: Enrichment took too long to complete
  • No Results: No data found for the provided input
  • Invalid Input: Missing required fields or invalid format

Workflow Examples

Lead Enrichment Pipeline

Webhook → Wiza Email Finder → Wiza Phone Finder → CRM Update

LinkedIn Outreach Prep

CSV Import → Wiza LinkedIn Finder → Message Personalization → LinkedIn Automation

Data Validation Flow

Database Query → Wiza Email Finder → Email Validation → Clean Database Update

Support

License

MIT

Contributing

Contributions are welcome! Please read our contributing guidelines and submit pull requests to the main repository.


Made with ❤️ by the Wiza team