N8n nodes for Tomba Email Finder & Email Verifier
npm install n8n-nodes-tombaThis is an n8n community node. It lets you use Tomba.io in your n8n workflows.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history
Follow the installation guide in the n8n community nodes documentation.
1. Go to Settings (Cogwheel)
2. Click on "Community Nodes"
3. Enter "n8n-nodes-tomba" into the text box
4. Click on "I understand the risk ..."
5. Click on "Install"
- Author Finder - Generate or retrieve the most likely email address from a blog post URL
- Autocomplete - Find company names and retrieve logo and domain information
- Domain Search - Get every email address found on the internet using a given domain name, with sources
- Domain Status - Find domain status if is webmail or disposable
- Email Count - Find total email addresses we have for one domain
- Email Enrichment - Look up person and company data based on an email
- Email Finder - Generate or retrieve the most likely email address from a domain name, a first name and a last name
- Email Format - Retrieve the email format patterns used by a specific domain
- Email Sources - Find email address source somewhere on the web
- Email Verifier - Verify the deliverability of an email address
- LinkedIn Finder - Generate or retrieve the most likely email address from a LinkedIn URL
- Location - Get employees location based on the domain name
- Phone Finder - Search for phone numbers based on an email, domain, or LinkedIn URL
- Phone Validator - Validate a phone number and retrieve its associated information
- Similar - Retrieve similar domains based on a specific domain
- Technology - Retrieve the technologies used by a specific domain
To use the Tomba node, you need to authenticate with your Tomba API credentials. Follow these steps to set up authentication:
1. Sign up for a free account at Tomba.io
2. Navigate to your API Settings in your Tomba dashboard
3. Copy your API Key and Secret Key
1. In your n8n workflow, add a Tomba node
2. Click on the Credential to connect with dropdown
3. Select Create New and choose Tomba API
4. Enter your credentials:
- API Key: Your Tomba API key
- Secret: Your Tomba secret key
5. Click Save to store your credentials securely
The Tomba node supports all Tomba API features, including email finding, verification, enrichment, phone finding, and domain analysis. Your credentials will be used to authenticate all requests to the Tomba API.
The Tomba node provides powerful email intelligence capabilities for your n8n workflows. Here are some common usage examples:
This workflow verifies the deliverability of email addresses:
Nodes needed:
- Manual Trigger (or any trigger node)
- Tomba node
Setup:
1. Add a Manual Trigger node to start your workflow
2. Add a Tomba node and connect it to the trigger
3. Configure the Tomba node:
- Operation: Email Verifier
- Email: Enter the email address to verify (e.g., test@example.com)
4. Execute the workflow to get verification results
Find all email addresses associated with a company domain:
Setup:
1. Add a trigger node
2. Add a Tomba node with these settings:
- Operation: Domain Search
- Domain: Company domain (e.g., stripe.com)
- Limit: Number of results to return
- Filters: Optional filters for department, type, etc.
Generate email addresses using names and company domains:
Setup:
1. Add a trigger node
2. Add a Tomba node with:
- Operation: Email Finder
- Domain: Target company domain
- First Name: Contact's first name
- Last Name: Contact's last name
Find phone numbers associated with emails or domains:
Setup:
1. Add a trigger node
2. Add a Tomba node with:
- Operation: Phone Finder
- Search Type: Choose Email, Domain, or LinkedIn
- Configure the relevant field based on your search type
Gather comprehensive company data:
Setup:
1. Domain Search: Find all emails for a domain
2. Location: Get company location data
3. Technology: Discover technologies used
4. Similar: Find similar companies
- Use the Return All option in Domain Search for comprehensive results
- Combine multiple operations in sequence for enriched data
- Use filters in Domain Search to target specific departments
- Cache results using n8n's built-in functionality to avoid duplicate API calls
- Set up error handling for rate limits and invalid inputs
- n8n community nodes documentation
- Tomba Email Finder
- Tomba API docs
- Tomba knowledge base
You can test your node as you build it by running it in a local n8n instance.
``bash`
npm install n8n -g
`bash`
git clone https://github.com/tomba-io/n8n-nodes-tomba.git
cd n8n-nodes-tomba/
`bash`In the node directory
npm run build
npm link
`bash``In the nodes directory within your n8n installation
npm link n8n-nodes-tomba
> Make sure you run npm link n8n-nodes-tomba in the nodes directory within your n8n installation. This is probably something like ~/.n8n/nodes/
Refer to N8N's documentation on creating nodes for detailed information on building your own nodes.