Email Enrichment using LeadMagic (Bulk) {Replace LeadMagic Node with any other Email Finder}

1 Like

Hi @Adnan_Khan
Yes, there are a few templates very close to this case, but not with leadmagic explicit
Generate & enrich LinkedIn leads with Apollo.io, LinkedIn API, Mail.so & GPT-3.5 | n8n workflow template

1 Like

The modular design here is solid - using a generic HTTP Request node instead of locking into the LeadMagic-specific node makes the whole thing much more reusable. One thing worth adding if you haven’t already: a conditional branch after the HTTP response to handle cases where the email finder returns empty or an error status, before writing to Sheets. Avoids polluting the output with null rows.

1 Like

Yeah, Exactly. It is better to use the HTTP Request node to implement the Email Finder API of these tools so one can replace with cURL from API documentation of whatever tool they prefer instead of leadmagic (e.g. Findymail).
Also, the “IF” conditional node is implemented for that reason, to handle cases where email finder returns empty or catch-all or error status. I have mapped that same status message to sheet so the user knows if there are outputs other than valid.
I really appreciate the input. Thank you!

Agreed, About this workflow, It is using the “HTTP Request” node instead of LeadMagic node so one can just replace the Email Finder API from LeadMagic to any other of their choice with little changes and the workflow handles that well.

1 Like