EmailVerify.io icon

EmailVerify.io

Consume EmailVerify.io API

Overview

This node integrates with the EmailVerify.io API to perform email-related operations. Specifically, the "Find Email" operation allows users to find an email address based on a person's name and a company's domain. This is useful in scenarios such as lead generation, sales outreach, or recruitment where you need to discover professional email addresses from limited information.

For example, if you have a contact's name "John" and the company domain "example.com", this node can help retrieve John's likely email address at that company.

Properties

Name Meaning
Name The full name of the person whose email address you want to find (e.g., "John").
Domain The domain of the company or website associated with the email address (e.g., "example.com").

Output

The output is a JSON array containing the response from the EmailVerify.io API for the "Find Email" operation. This typically includes the found email address and possibly additional metadata about the confidence or source of the email.

Example output structure (simplified):

[
  {
    "email": "john@example.com",
    "score": 95,
    "source": "public"
  }
]

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for EmailVerify.io to authenticate requests.
  • The node makes HTTP GET requests to EmailVerify.io endpoints.
  • Ensure the API key is configured properly in n8n credentials before using the node.

Troubleshooting

  • Common issues:

    • Invalid or missing API key will cause authentication errors.
    • Providing incorrect or incomplete name/domain parameters may result in no email found.
    • Network connectivity problems can cause request failures.
  • Error messages:

    • "error": "Invalid API key": Check that your API key credential is correct and active.
    • "error": "Name and domain are required": Make sure both "Name" and "Domain" properties are filled.
    • Timeout or network errors: Verify internet connection and EmailVerify.io service status.

Links and References

Discussion