npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-quickemailverification

v1.2.4

Published

n8n node for QuickEmailVerification API

Readme

n8n-nodes-quickemailverification

This is an n8n community node for QuickEmailVerification API. It provides email verification functionality with caching support.

Buy Me A Coffee

QuickEmailVerification Node Overview QuickEmailVerification node in action showing email verification with caching capabilities

Installation

Follow these steps to install the node:

# Install from npm
npm install n8n-nodes-quickemailverification

# Or install from source
npm install

Features

  • Email verification using QuickEmailVerification API
  • Response caching with configurable TTL
  • Rate limiting and retry handling
  • Secure credential storage
  • Remaining credits tracking
  • Timestamp tracking for verifications

Configuration

  1. Get your API key from QuickEmailVerification
  2. Add your API credentials in n8n credentials manager
  3. Configure optional caching settings:
    • Enable/disable caching (default: enabled)
    • Set cache TTL in days (default: 30 days)

Usage

  1. Add the QuickEmailVerification node to your workflow
  2. Configure the node with your credentials
  3. Connect input nodes that provide email addresses
  4. Use output for email verification results

Response Format

The node returns verification results including:

  • Validation status
  • Detailed reason
  • Additional email information (disposable, role-based, etc.)
  • MX record information
  • Caching status (cached: true/false)
  • Verification timestamp (verifiedAt in ISO 8601 format)
  • Remaining API credits (remainingCredits)

Example response:

{
    "result": "valid",
    "reason": "accepted_email",
    "disposable": false,
    "accept_all": false,
    "role": false,
    "free": false,
    "email": "[email protected]",
    "user": "test",
    "domain": "example.com",
    "mx_record": true,
    "mx_domain": "example.com",
    "safe_to_send": true,
    "did_you_mean": "",
    "success": true,
    "message": null,
    "cached": false,
    "verifiedAt": "2024-03-14T12:34:56.789Z",
    "remainingCredits": 950
}

Error Handling

The node handles various API response codes:

  • 200: Success
  • 400: Bad Request
  • 401: Invalid API key
  • 402: Credit limit reached
  • 403: Account disabled
  • 404: Invalid endpoint
  • 429: Rate limit exceeded
  • 500: Server error

Best Practices

  1. Enable caching for frequently checked emails
  2. Use batch operations for multiple emails
  3. Monitor remaining credits
  4. Handle rate limits with appropriate delays
  5. Validate email format before verification
  6. Monitor cache usage for optimal performance

Support

If you find this node helpful and would like to support its development:

Buy Me A Coffee

License

MIT