Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 43 additions & 4 deletions components/tomba/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,50 @@
# Overview

The Tomba API is a potent tool for email discovery and domain search. With it, you can automate the process of finding and verifying email addresses linked to a domain, which could be pivotal for lead generation, outreach campaigns, or market research. By leveraging the Tomba API on Pipedream, you streamline these tasks into efficient workflows that can interact with numerous other apps and services, such as CRMs, marketing automation tools, or database managers. The synergy between Tomba and Pipedream allows for real-time processing and integration of email data within your existing business systems.
The Tomba API is a comprehensive email finder and verification service that enables you to discover, verify, and enrich email addresses and contact data. With Tomba, you can find email addresses from domains, names, LinkedIn profiles, or blog posts, verify email deliverability, and gather detailed company intelligence. Leverage Pipedream's capabilities to integrate Tomba with hundreds of other apps, creating powerful automated workflows for lead generation, email verification, contact enrichment, and competitive research.

# Example Use Cases

- **Lead Generation Automation**: Trigger a workflow when a new company is added to your CRM. Use Tomba to find email addresses associated with the company's domain. Enrich lead data in the CRM and follow up with an automated outreach sequence using an email marketing tool like Mailchimp.
- **Lead Generation Automation**: Trigger a workflow when a new company is added to your CRM. Use Tomba to find email addresses associated with the company's domain, enrich the lead data, and automatically add qualified contacts to your outreach sequences in tools like Mailchimp or HubSpot.

- **Domain Research and Monitoring**: Schedule a regular Pipedream workflow that checks a list of domains and uses Tomba to gather any new email addresses. Store the findings in a Google Sheets document and send a Slack notification to the sales team with any updates or new leads.
- **Email List Verification**: Before launching an email campaign, run your contact list through a Pipedream workflow that uses Tomba's email verifier to validate each address. Automatically remove invalid emails and update your email platform like SendGrid, ensuring higher deliverability rates and protecting your sender reputation.

- **Verification and Clean-up for Marketing Campaigns**: Before launching an email campaign, run your email list through a Pipedream workflow that uses Tomba to verify the validity of each address. Update the campaign list in your email platform, like Sendgrid, to omit invalid or nonexistent emails, ensuring higher deliverability and engagement rates.
- **Competitive Intelligence Gathering**: Set up a scheduled workflow that monitors competitor domains using Tomba's domain search and technology detection features. Store findings in Google Sheets and send Slack notifications to your team with insights about competitor email patterns, employee counts, and tech stacks.

# Getting Started

To start using Tomba with Pipedream:

1. **Sign up for Tomba**: Create an account at [tomba.io](https://tomba.io) and obtain your API key and secret from the dashboard.

2. **Connect to Pipedream**: In your Pipedream workflow, add a Tomba action and authenticate using your API credentials.

3. **Choose your action**: Select from 20 available actions including Email Finder, Domain Search, Email Verifier, and Company Search.

4. **Configure parameters**: Set up your search criteria such as domain names, email addresses, or LinkedIn URLs.

5. **Test and deploy**: Run your workflow to verify the results, then deploy for automated execution.

# Troubleshooting

**Authentication Issues**

- Verify your API key and secret are correctly entered in the Pipedream connection settings
- Check that your Tomba account has sufficient credits and is not suspended
- Ensure your API keys haven't expired or been regenerated

**Rate Limiting**

- Tomba enforces API rate limits based on your subscription plan
- Implement delays between requests in high-volume workflows
- Monitor your usage with the "Get Usage" action to track quota consumption

**No Results Found**

- For Email Finder: Try different name variations or check if the domain uses a non-standard email format
- For Domain Search: Some domains may have limited public email exposure
- For LinkedIn Finder: Ensure the LinkedIn URL is publicly accessible and properly formatted

**Invalid Email Addresses**

- Use the Email Verifier action to validate emails before adding them to campaigns
- Some emails may exist but have strict spam filters that prevent verification
36 changes: 36 additions & 0 deletions components/tomba/actions/author-finder/author-finder.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import app from "../../tomba.app.mjs";

export default {
key: "tomba-author-finder",
name: "Author Finder",
description:
"Generate or retrieve the most likely email address from a blog post URL. [See the documentation](https://tomba.io/api)",
version: "0.0.1",
type: "action",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
app,
blogUrl: {
propDefinition: [
app,
"blogUrl",
],
},
},
async run({ $ }) {
const response = await this.app.authorFinder({
$,
blogUrl: this.blogUrl,
});

$.export(
"$summary",
`Successfully found author information for blog post: ${this.blogUrl}`,
);
return response;
},
};
66 changes: 66 additions & 0 deletions components/tomba/actions/domain-search/domain-search.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
import app from "../../tomba.app.mjs";

export default {
key: "tomba-domain-search",
name: "Domain Search",
description:
"Get every email address found on the internet using a given domain name, with sources. [See the documentation](https://tomba.io/api)",
version: "0.0.1",
type: "action",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
app,
domain: {
propDefinition: [
app,
"domain",
],
},
page: {
propDefinition: [
app,
"page",
],
},
limitDomainSearch: {
propDefinition: [
app,
"limitDomainSearch",
],
},
country: {
propDefinition: [
app,
"country",
],
},
department: {
propDefinition: [
app,
"department",
],
},
},
async run({ $ }) {
const response = await this.app.domainSearch({
$,
domain: this.domain,
page: this.page,
limit: this.limitDomainSearch,
country: this.country,
department: this.department,
});

$.export(
"$summary",
`Successfully found ${
response.data?.emails?.length || 0
} email addresses for domain: ${this.domain}`,
);
return response;
},
};
36 changes: 36 additions & 0 deletions components/tomba/actions/domain-status/domain-status.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import app from "../../tomba.app.mjs";

export default {
key: "tomba-domain-status",
name: "Domain Status",
description:
"Find domain status if is webmail or disposable. [See the documentation](https://tomba.io/api)",
version: "0.0.1",
type: "action",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
app,
domain: {
propDefinition: [
app,
"domain",
],
},
},
async run({ $ }) {
const response = await this.app.domainStatus({
$,
domain: this.domain,
});

$.export(
"$summary",
`Successfully retrieved domain status for: ${this.domain}`,
);
return response;
},
};
37 changes: 37 additions & 0 deletions components/tomba/actions/domain-suggestions/domain-suggestions.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import app from "../../tomba.app.mjs";

export default {
key: "tomba-domain-suggestions",
name: "Domain Suggestions",
description:
"Retrieve a list of suggested domains similar to or related to your search query. This helps discover competitors, similar companies, and related businesses for market research and prospecting. [See the documentation](https://tomba.io/api)",
version: "0.0.1",
type: "action",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
app,
query: {
propDefinition: [
app,
"query",
],
description: "The domain or company name to find suggestions for",
},
},
async run({ $ }) {
const response = await this.app.domainSuggestions({
$,
query: this.query,
});

$.export(
"$summary",
`Successfully found domain suggestions for: ${this.query}`,
);
return response;
},
};
36 changes: 36 additions & 0 deletions components/tomba/actions/email-count/email-count.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import app from "../../tomba.app.mjs";

export default {
key: "tomba-email-count",
name: "Email Count",
description:
"Find total email addresses we have for one domain. [See the documentation](https://tomba.io/api)",
version: "0.0.1",
type: "action",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
app,
domain: {
propDefinition: [
app,
"domain",
],
},
},
async run({ $ }) {
const response = await this.app.emailCount({
$,
domain: this.domain,
});

$.export(
"$summary",
`Successfully retrieved email count for domain: ${this.domain}`,
);
return response;
},
};
33 changes: 33 additions & 0 deletions components/tomba/actions/email-enrichment/email-enrichment.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import app from "../../tomba.app.mjs";

export default {
key: "tomba-email-enrichment",
name: "Email Enrichment",
description:
"Look up person and company data based on an email. [See the documentation](https://tomba.io/api)",
version: "0.0.1",
type: "action",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
app,
email: {
propDefinition: [
app,
"email",
],
},
},
async run({ $ }) {
const response = await this.app.emailEnrichment({
$,
email: this.email,
});

$.export("$summary", `Successfully enriched data for email: ${this.email}`);
return response;
},
};
50 changes: 50 additions & 0 deletions components/tomba/actions/email-finder/email-finder.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import app from "../../tomba.app.mjs";

export default {
key: "tomba-email-finder",
name: "Email Finder",
description:
"Generate or retrieve the most likely email address from a domain name, a first name and a last name. [See the documentation](https://tomba.io/api)",
version: "0.0.1",
type: "action",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
app,
domain: {
propDefinition: [
app,
"domain",
],
},
firstName: {
propDefinition: [
app,
"firstName",
],
},
lastName: {
propDefinition: [
app,
"lastName",
],
},
},
async run({ $ }) {
const response = await this.app.emailFinder({
$,
domain: this.domain,
firstName: this.firstName,
lastName: this.lastName,
});

$.export(
"$summary",
`Successfully found email for ${this.firstName} ${this.lastName} at ${this.domain}`,
);
return response;
},
};
36 changes: 36 additions & 0 deletions components/tomba/actions/email-format/email-format.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import app from "../../tomba.app.mjs";

export default {
key: "tomba-email-format",
name: "Email Format",
description:
"Retrieve the email format patterns used by a specific domain. [See the documentation](https://tomba.io/api)",
version: "0.0.1",
type: "action",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
app,
domain: {
propDefinition: [
app,
"domain",
],
},
},
async run({ $ }) {
const response = await this.app.emailFormat({
$,
domain: this.domain,
});

$.export(
"$summary",
`Successfully retrieved email format patterns for domain: ${this.domain}`,
);
return response;
},
};
Loading