
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
n8n-nodes-emailvalidation
Advanced tools
n8n node to validate and verify email addresses via emailvalidation.io.

This package provides the EmailValidation community node for n8n. It integrates the emailvalidation.io API to validate and verify email addresses.
To make your custom node available to the community, you must create it as an npm package, and submit it to the npm registry.
If you would like your node to be available on n8n cloud you can also submit your node for verification.
You need the following installed on your development machine:
npm install n8n -g
These are the basic steps for working with the starter. For detailed guidance on creating and publishing nodes, refer to the documentation.
git clone https://github.com/<your organization>/<your-repo-name>.git
npm i to install dependencies./nodes and /credentials. Modify the examples, or replace them with your own nodes.package.json to match your details.npm run lint to check for errors or npm run lintfix to automatically fix errors when possible.Refer to our documentation on creating nodes for detailed information on building your own nodes.
Validate and verify email addresses using the emailvalidation.io API.
EmailValidation API.https://api.emailvalidation.io/v1Authentication is sent via query parameter apikey (the API also supports header-based auth). See docs: https://emailvalidation.io/docs/.
catch_all=1 to perform catch-all detection (paid plans)Per endpoint docs: https://emailvalidation.io/docs/info
The node performs a GET /v1/info with email, optional catch_all, and apikey query parameters. Example request:
curl -G "https://api.emailvalidation.io/v1/info" \
--data-urlencode "email=support@emailvalidation.io" \
--data-urlencode "apikey=YOUR-API-KEY"
{
"email": "[email protected]",
"user": "support",
"tag": "",
"domain": "emailvalidation.io",
"smtp_check": true,
"mx_found": true,
"did_you_mean": "",
"role": true,
"disposable": false,
"score": 0.64,
"state": "deliverable",
"reason": "valid_mailbox",
"free": false,
"format_valid": true,
"catch_all": null
}
See documentation for field meanings and state/reason descriptions: https://emailvalidation.io/docs/info
FAQs
n8n node to validate and verify email addresses via emailvalidation.io.
The npm package n8n-nodes-emailvalidation receives a total of 515 weekly downloads. As such, n8n-nodes-emailvalidation popularity was classified as not popular.
We found that n8n-nodes-emailvalidation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.