FindyMail

Find email addresses using FindyMail API

Overview

This node integrates with the FindyMail API to find and verify email addresses and phone numbers, as well as retrieve employee information from a company domain. It is useful for sales, recruiting, or marketing professionals who need to enrich contact data or validate communication details.

Specifically, the "Find Email From Name + Company" operation allows users to input a person's full name and their company's domain to search for that person's email address. This can help in scenarios such as lead generation, outreach campaigns, or verifying contacts before sending emails.

Example use case: Given the name "John Doe" and the domain "example.com", the node queries FindyMail to find John's professional email address at that company.

Properties

Name Meaning
Name The full name of the person whose email you want to find (e.g., "John Doe").
Domain The company domain to search for the email address (e.g., "example.com").
Additional Options Optional settings including:
- Webhook URL: A URL to receive the result asynchronously (optional).

Output

The node outputs JSON data containing the response from the FindyMail API for the given query. The structure depends on the API's response but generally includes found email addresses and related metadata.

  • The output is an array of items, each with a json property holding the API response.
  • If a webhook URL is provided, the API may send results asynchronously to that URL; the node still returns the initial response.
  • No binary data is output by this operation.

Dependencies

  • Requires an active FindyMail API key credential configured in n8n.
  • The node makes authenticated HTTP POST requests to FindyMail endpoints.
  • Network access to https://app.findymail.com/api/search/name is required.

Troubleshooting

  • Missing Parameters: The node throws errors if either "Name" or "Domain" is empty. Ensure both are provided.
  • API Authentication Errors: If the API key is invalid or missing, requests will fail. Verify the API key credential setup.
  • Network Issues: Connectivity problems to the FindyMail API endpoint will cause request failures.
  • Webhook URL Misconfiguration: If using the optional webhook URL, ensure it is reachable and correctly handles incoming data.
  • Error Handling: If the node is set to continue on failure, errors will be returned in the output JSON under an error field.

Links and References

Discussion