🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

n8n-nodes-quickemailverification

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-nodes-quickemailverification

n8n node for QuickEmailVerification API

1.2.4
latest
Source
npm
Version published
Weekly downloads
16
-20%
Maintainers
1
Weekly downloads
 
Created
Source

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

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

Usage

  • Add the QuickEmailVerification node to your workflow
  • Configure the node with your credentials
  • Connect input nodes that provide email addresses
  • 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": "test@example.com",
    "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

  • Enable caching for frequently checked emails
  • Use batch operations for multiple emails
  • Monitor remaining credits
  • Handle rate limits with appropriate delays
  • Validate email format before verification
  • 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

Keywords

n8n

FAQs

Package last updated on 29 Apr 2025

Did you know?

Socket

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.

Install

Related posts