Description
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.
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
- Email addresses
- LinkedIn profile URLs
- Contact details (name + company/domain)
- Multiple data points for best results
- Email addresses
- LinkedIn URLs (for enhanced profile data)
- Contact details (name + company/domain)
- Multiple data points for best results
📞 Phone Finder
Find mobile and direct dial phone numbers using:
💼 LinkedIn Profile Finder
Find LinkedIn profiles and extract key details using:
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
N8NNODESINCLUDE=@wizaco/n8n-nodes-wizaOr in docker-compose.yml
environment:
N8NNODESINCLUDE: "@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": "john@acme.com"
}
LinkedIn Profile Enhancement
{
"operation": "LinkedIn Profile Finder",
"inputType": "All Fields",
"email": "john@acme.com",
"fullName": "John Doe",
"company": "acme.com"
}
Input Types
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": "john@acme.com",
"email_type": "work",
"email_status": "valid",
"name": "John Doe",
"company": "Acme Corp",
"title": "CEO",
"linkedinprofileurl": "https://linkedin.com/in/johndoe"
}
Phone Finder Response
{
"phone_number": "+1234567890",
"phone_status": "found",
"mobile_phone": "+1234567890",
"name": "John Doe",
"company": "Acme Corp",
"email": "john@acme.com"
}
LinkedIn Profile Finder Response
{
"linkedinprofileurl": "https://linkedin.com/in/johndoe",
"name": "John Doe",
"title": "CEO",
"company": "Acme Corp",
"location": "New York, NY",
"company_domain": "acme.com"
}
Configuration Options
Timeout
Email Type (Email Finder only)
Error Handling
The node handles various error scenarios:
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
Contributing
Contributions are welcome! Please read our RELEASING.md for how to publish a new version.
—
Made with ❤️ by the Wiza team