Back to Nodes

Wiza

Last updated Apr 27, 2026

n8n node for Wiza contact enrichment API

21 Weekly Downloads
87 Monthly Downloads

Included Nodes

Wiza

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.

!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

    N8NNODESINCLUDE=@wizaco/n8n-nodes-wiza

    Or 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

    📧 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": "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

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

  • Work: Professional emails (john@company.com)
  • Personal: Personal emails (john.doe@gmail.com)
  • Any: Both work and personal emails
  • 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

  • Documentation: wiza.co/api-docs
  • Issues: GitHub Issues
  • Wiza Support: hello@wiza.com

License

MIT

Contributing

Contributions are welcome! Please read our RELEASING.md for how to publish a new version.

Made with ❤️ by the Wiza team