MentionFox
n8n guide

How to automate lead enrichment in n8n

A lead arrives with a name and almost nothing else. Enrichment turns that into a verified contact you can actually act on — and n8n is the perfect place to do it the moment the lead lands, with zero manual lookup.

How this workflow is wired
Lead-enrichment workflowWorkflow node flow: Trigger (Trigger), then Enrich Person (FoxAPIs), then Set (Logic), then Google Sheets (Destination)TriggerTRIGGEREnrich PersonFOXAPISSetLOGICGoogle SheetsDESTINATION

Why raw leads stall

Most leads arrive thin. A newsletter signup gives you an email and maybe a name. A webinar export gives you a name and a company. A mention you found in a conversation gives you a handle. None of that is enough to prioritize, route, or reach out well. Someone has to take each thin record and turn it into a real contact: confirm the work email, find the current title and employer, pull the social links, and judge how confident the match is.

Done by hand, that is five minutes per lead of tab-juggling, and it does not scale past a trickle. Worse, it happens late — by the time a human gets to a lead, the moment of interest has cooled. The fix is to enrich automatically, the instant the lead appears, so every record in your CRM or sheet is already actionable.

n8n is built for exactly this. It can watch for new leads from almost any source, run enrichment on each one, and write the result wherever your team works. The only part n8n does not provide is the enrichment itself — the resolver that takes a sparse input and returns a verified contact. In these templates that resolver is the MentionFox Lead Enricher node.

What "good" enrichment looks like

Not all enrichment is equal, and the difference matters more than people expect. Weak enrichment pattern-guesses an email from a name and a domain and presents it as fact; you find out it was wrong when your bounce rate spikes and your sending reputation suffers. Strong enrichment does three things differently:

That honesty is what makes automation safe. If your enricher fabricates, automating it just spreads the fabrication faster. If it verifies and scores, automating it compounds good data.

The enrichment workflow in n8n

The pattern is the same regardless of where leads come from:

  1. A trigger for new leads. A form submission, a new Google Sheet row, an Airtable record, or a webhook from your site or CRM. n8n has a trigger for each.
  2. An enrichment node. Pass the name and any hint you have — company, domain, a LinkedIn URL, a social handle, a title. More hints mean a higher-confidence match. The node returns the verified email, title, company, links, and a confidence score.
  3. A write node. Append or update a row in Sheets or Airtable, or upsert the contact into your CRM, mapping the enriched fields to your columns.

You can stack two resolvers when the input is just a company and a name with no email: first find the work email from the domain, then enrich the person around it. That two-step "find then enrich" produces the most complete record and is the right pattern for inbound forms that only capture a name and company.

Branch on confidence, not blind faith

The payoff of structured enrichment output is that you can branch. After the enrichment node, an IF node can route on the confidence score or the verified flag:

This is the difference between "enrich everything and hope" and a pipeline that quietly sorts itself. The thin leads that resolve cleanly move; the ones that do not get flagged instead of silently polluting your data.

What it costs, and how to keep it sane

Enrichment is a paid operation because it does real resolution work, so cost discipline matters. Two habits keep spend predictable. First, gate before you enrich. If only leads above a certain fit or follower threshold are worth a contact lookup, put the IF node before the enrichment node so you only spend on the ones that matter. Second, use light mode by default. Light resolves the contact and identity, which is what most pipelines need; reserve deep mode for the high-value leads where you want the full profile. Because misses are cheap, you are not penalized for trying — you mainly pay for the records you actually resolve.

Enrichment as one stage of a bigger flow

Enrichment rarely lives alone. It is usually the stage that makes the stages around it worthwhile. Upstream, a scan or a form supplies thin records; enrichment turns them into contacts; downstream, a scoring step ranks them and a routing step sends them where they belong. Because n8n passes structured data between nodes, the enriched fields — verified email, title, company, confidence — become the inputs to everything that follows. A fit score leans on the title and confidence. A routing branch leans on the verified flag. A personalized draft leans on the company and role. Treat enrichment as the hinge of the workflow, not a bolt-on, and the whole pipeline gets sharper: you are no longer routing names, you are routing people you actually know something about. That is also why putting enrichment early pays off — every later node gets richer inputs to work with, and a single resolution powers many downstream decisions instead of one.

Where this lands: the MentionFox n8n template Mention → Enrich Author → Google Sheet wires this enrichment flow for you end to end, and the Inbound Lead Webhook → Find Email + Enrich template covers the form-and-CRM case. Both run the MentionFox Lead Enricher on your FoxAPIs credits — grab your key at foxapis.com — so you import, drop in your credential, and the resolver is live.

On credits: the MentionFox n8n node runs on FoxAPIs credits — priced at foxapis.com/pricing and separate from MentionFox subscription plans. Get your free API key at foxapis.com/trial.

Ready-made: enrichment workflows for n8n

Two importable templates cover the common cases. Mention → Enrich Author → Google Sheet enriches the author of every brand mention into a lead row. Inbound Lead Webhook → Find Email + Enrich → Airtable takes a name and company domain from your form or CRM, finds a verified work email, enriches the person, and writes one clean record. Both use the FoxAPIs Lead Enricher with your FoxAPIs API key from foxapis.com.

Get the templates + setup See all 12 templates

Questions, answered

Can n8n enrich leads automatically?

Yes. A trigger fires when a lead arrives, an enrichment node resolves the person, and a destination node writes the record. The FoxAPIs Lead Enricher turns a name plus any hint into a verified email, title, company, and links.

What does lead enrichment actually return?

A verified work email, current title and employer, social links, and a confidence score. Strong enrichment marks what is verified and is honest when a person cannot be resolved.

What does it cost to enrich a lead in n8n?

100 credits in light mode, 150 in deep, per person, against your FoxAPIs credits. Unresolved people return a cheap not-found result. See pricing for credit packs.

Should I find the email or enrich first?

If you only have a name and company domain, find the email first, then enrich the person around it for the most complete record. If you already have an email, enrich directly.