Overview
This node integrates with an email validation service API to verify the validity of a single email address. It is useful in scenarios where you want to ensure that an email address is correctly formatted, exists, and is safe to use before sending communications or adding it to your mailing list. For example, marketing teams can use this node to clean their email lists by filtering out invalid or risky addresses, improving deliverability and reducing bounce rates.
Properties
| Name | Meaning |
|---|---|
| The email address to verify. Example: "name@example.com" |
Output
The node outputs JSON data containing the validation results for the provided email address. This typically includes information such as whether the email is valid, risky, or invalid, along with additional metadata returned by the email validation API. The exact structure depends on the external service's response but generally provides detailed insights into the email's status.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the email validation service.
- The node makes HTTP GET requests to the service's endpoint at
https://bouncer.automely.ai/api/v1/validate. - Proper configuration of the API authentication token in n8n credentials is necessary.
Troubleshooting
Common issues:
- Invalid or missing API key credential will cause authentication failures.
- Providing improperly formatted email addresses may result in errors or invalid responses.
- Network connectivity problems can prevent successful API calls.
Error messages:
- Authentication errors usually indicate incorrect or expired API keys; verify and update credentials.
- Validation errors might occur if the email parameter is empty or malformed; ensure the email input is correct.
- Timeout or connection errors suggest network issues; check internet access and API availability.
Links and References
- NeverBounce API Documentation (general reference for email validation APIs)
- Email Validation Best Practices