Lead Enrichment with n8n: Build a Reliable Company, Website and Location Enrichment Workflow-30 Days of n8n & Automation – Day 11

12/30/2025By Alfaz Mahmud
Lead Enrichment with n8n: Build a Reliable Company, Website and Location Enrichment Workflow-30 Days of n8n & Automation – Day 11

If you are collecting leads but only storing name and email, you are leaving money on the table. Lead enrichment with n8n lets you automatically attach company, website, and location data the moment a lead enters your system.

In this Day 11 guide of 30 Days of n8n & Automation, you will learn how to call an enrichment API from n8n, map the response back to your CRM or Google Sheet, and ship a production-ready workflow.​

Throughout this article, examples come from real workflows that Alfaz Mahmud Rizve uses for SaaS and agency clients at whoisalfaz.me.


Why lead enrichment with n8n matters

When leads arrive with only an email address, sales teams waste time researching basics like company size, website, and city. Automated lead enrichment with n8n handles this grunt work in the background.​

For SaaS founders and agencies, this means:

At whoisalfaz.me, Alfaz Mahmud Rizve treats enrichment as a baseline: no lead should enter a pipeline without at least company, website, and location attached.


What you will build (Day 11 workflow)

In this Day 11 entry of 30 Days of n8n & Automation, you will build a workflow that:

By the end, you will have a reusable lead enrichment with n8n template that you can clone for multiple brands or clients.​

Diagram of a lead enrichment with n8n workflow where a new lead from a form moves into an API enrichment step and then into CRM and Google Sheets, emphasizing automatic company, website, and location enrichment. Visual created to illustrate how automation consultant Alfaz Mahmud Rizve designs scalable lead enrichment with n8n for SaaS and agencies on whoisalfaz.me, highlighting each node in the workflow and the flow of enriched data for better sales operations

Choosing the right enrichment API

You can use any enrichment provider that exposes a REST API and returns JSON.​

Popular options include:

When Alfaz Mahmud Rizve designs workflows at whoisalfaz.me, the selection process usually follows this rule:

Even if you later swap providers, your lead enrichment with n8n structure can stay identical—only the HTTP Request configuration changes.​


Core nodes you will use (building on Day 6)

Day 6 of this series already covered the essential n8n core nodes like HTTP Request, Set, Merge, and Code.

In this lead enrichment with n8n workflow, you will primarily use:

This structure is almost identical to production workflows Alfaz Mahmud Rizve uses for client lead pipelines at whoisalfaz.me.​


Step-by-step: basic lead enrichment with n8n

Interface view of an HTTP Request node in n8n configured to call a lead enrichment API using email and domain, along with a Set node that maps response fields into enriched_company, enriched_website, enriched_city, and enriched_country. The image supports a tutorial by automation consultant Alfaz Mahmud Rizve on whoisalfaz.me demonstrating lead enrichment with n8n for SaaS and agencies, and visually guides readers on how to structure their API call and normalization steps

This section walks through a minimal yet production-ready lead enrichment with n8n workflow where input and output live in Google Sheets.​

1. Prepare your input sheet

Create a Google Sheet with columns like:

A sample “Enrich Company Data in Google Sheets” setup is documented in n8n’s official workflows, where the enrichment API fills revenue, employee count, and location fields.

At whoisalfaz.meAlfaz Mahmud Rizve often also adds a status column (“pending”, “enriched”, “failed”) to keep tracking clean for agencies managing many leads.

2. Trigger: Google Sheets or Webhook

Use one of two patterns for lead enrichment with n8n:

For non-technical teams, the Google Sheets trigger is easiest, while SaaS products usually prefer a webhook-based approach.​

3. Build the HTTP Request node

Add an HTTP Request node and configure it roughly like this:

Many APIs return fields like company_namewebsitelocation_city_name, and country.​

Once the node works for one sample lead, Alfaz Mahmud Rizve recommends saving these settings in an n8n credential to reuse them across multiple lead enrichment with n8n workflows.​

Example JSON mapping (pseudo)

json{
  "email": "test@example.com",
  "company": "Example Inc",
  "website": "https://example.com",
  "location": {
    "city": "San Francisco",
    "country": "United States"
  }
}

This structure matches common enrichment responses where company, website, and location are grouped in a single payload.​

4. Normalize data with Set (and optional Code)

After the HTTP Request node, add a Set node to map API fields into clean property names:​

In Day 6’s core node article, using Set earlier made workflows cleaner and easier to debug, and that pattern applies strongly in lead enrichment with n8n.

Optionally, add a small Code node to:

n8n’s documentation shows how code nodes are often just a few lines of JavaScript, even for AI-driven enrichment patterns.​

5. Write enriched data back

Finally, send the enriched fields to your storage:

Official n8n workflow examples often use domain as a unique key to match rows and update only specific columns (like revenue, employees, and location).​

For SaaS and agencies, Alfaz Mahmud Rizve suggests always writing a last_enriched_at timestamp to help you later manage retries or changes in provider quality at whoisalfaz.me.​


Handling failures and avoiding API waste

Raw lead enrichment with n8n is not enough; you must handle:

Use If nodes for basic branching

Insert an If node just after HTTP Request to check whether the API returned a valid company.​

For example:

This simple branching pattern appears in many n8n templates, especially those doing multi-step enrichment or scraping.​

Add simple caching

To avoid repeated calls, lead enrichment with n8n workflows often:

Community workflows show how using a separate “cache” sheet or table significantly reduces cost while keeping enrichment fresh.​

At whoisalfaz.me, Alfaz Mahmud Rizve uses a habit: “Never enrich the same domain more than once in 24 hours unless debugging.”​


Real-world example: from form submission to enriched lead

Here is how a full production lead enrichment with n8n pipeline might look for a SaaS free-trial signup.​

  1. Webhook trigger receives form data (name, email, company field).
  2. HTTP Request node sends email/domain to enrichment API.​
  3. If node checks if the enrichment succeeded.​
  4. Set node normalizes fields into companywebsitecitycountry.​
  5. CRM node creates or updates a contact and attaches enriched company data.
  6. Email/Slack notification sends the enriched snapshot to the sales team.

n8n’s lead-generation examples show how this style of workflow can also include AI steps to score or classify the enriched lead before routing.

This end-to-end pattern is exactly what Alfaz Mahmud Rizve deploys for agencies that want qualified leads in their CRM instead of raw form submissions, and these are documented workflows at whoisalfaz.me.​

Isometric pipeline showing a user submitting a signup form, the data traveling through an n8n workflow into a lead enrichment API, then updating a CRM and sending Slack alerts for high-priority accounts. This visual created for whoisalfaz.me illustrates how Alfaz Mahmud Rizve structures production-ready lead enrichment with n8n for SaaS and agencies, connecting signup forms, enrichment services, and sales tools in a single automated system

Mistakes to avoid when enriching leads with n8n

There are a few classic traps that kill the ROI of lead enrichment with n8n:

Official workflow guides often recommend centralizing your enrichment fields (e.g., always company_namewebsitelocation_city_name) to align multiple pipelines.​

Alfaz Mahmud Rizve’s personal rule at whoisalfaz.me: “If a field is important enough to enrich, it is important enough to standardize.”​


Reusable enrichment framework for SaaS & agencies

You can treat lead enrichment with n8n as a reusable pattern that always follows the same steps:​

  1. Trigger: New or updated lead.​
  2. Identifier: Decide on email, domain, or IP.​
  3. Enrich: HTTP Request with standardized mapping.​
  4. Validate: If node checks success and data quality.​
  5. Persist: Update CRM, sheet, or database.​
  6. Notify: Slack/email to sales if high-value.

n8n’s workflow library shows multiple enrichment templates that follow exactly this pattern, only swapping in different enrichment or scraping providers.​

At whoisalfaz.me, Alfaz Mahmud Rizve encourages agencies to standardize this framework so that every new client gets the same reliable enrichment backbone with minimal setup time.​


Checklist: ship your lead enrichment with n8n

Use this quick checklist before you call the workflow “done”:

This checklist mirrors the production workflows that official n8n examples use for company enrichment and AI-assisted pipelines.​


Building flows in n8n is powerful, but your automation is only as good as your data source. If you are tired of hitting API limits or getting bad data from standard providers, read my new guide on 5 Outstanding Ideas for B2B Lead Generation to see how AI Agents can replace manual API stitching

This article is part of the 30 Days of n8n & Automation series at whoisalfaz.me.

Earlier posts you should read next or reference inside your editor:

You can also explore the broader n8n automation category to see how Alfaz Mahmud Rizve applies similar patterns to AI workflows and multi-step lead pipelines.​

If you enjoyed this Day 11 breakdown of lead enrichment with n8n, try implementing this workflow in your own n8n instance today and track how much manual research time you remove from your week.​

Then, subscribe to the newsletter at whoisalfaz.me so you do not miss tomorrow’s Day 12 automation in the 30 Days of n8n & Automation series from Alfaz Mahmud Rizve