Tomba icon

Tomba

Consume Tomba API

Overview

The Tomba node's "Email Count" operation allows you to find out how many email addresses Tomba has indexed for a given domain. This is useful for lead generation, sales prospecting, or market research scenarios where you want to gauge the number of potential contacts available for a specific company or website.

Practical Example:
If you input stripe.com as the domain, the node will return the total count of email addresses associated with that domain in Tomba's database.

Properties

Name Meaning
Domain Domain name from which you want to find the email addresses. For example, "stripe.com".

Output

The output is a JSON object containing information about the number of email addresses found for the specified domain. The structure typically includes:

{
  "domain": "stripe.com",
  "total": 123,
  // ...other possible metadata fields returned by Tomba API
}
  • domain: The queried domain.
  • total: The total number of email addresses found for this domain.

Note: The actual output may include additional metadata fields depending on the Tomba API response.

Dependencies

  • External Service: Requires access to the Tomba API.
  • API Key: You must configure Tomba API credentials in n8n under the name tombaApi.

Troubleshooting

  • Missing or Invalid API Key:
    If your credentials are not set up correctly, the node will throw an authentication error. Ensure your Tomba API key is configured in n8n.

  • Invalid Domain:
    If you provide an invalid or non-existent domain, the API may return an error or a count of zero.

  • Error Handling:
    If an error occurs and "Continue On Fail" is enabled, the node will output an object with an error field describing the issue.

Links and References

Discussion