If you’re running signup forms, CRM syncs, or list-building workflows through n8n, you’ve probably already got a spot where a bad email slips through and quietly tanks your sender reputation. We just shipped n8n-nodes-rocketverifier, an official community node that drops real-time and bulk email verification directly into your workflows.

Why a dedicated node instead of an HTTP Request node

You could always call the RocketVerifier API from a generic HTTP Request node — plenty of people already do. But a dedicated node gets you:

  • Typed operations (Verify, Create Batch Job, Get Status, Get Results, Check Credits) instead of hand-built URLs and JSON bodies
  • A proper credential type with a built-in test request against /v1/credits, so n8n tells you immediately if your API key is wrong
  • Cleaner workflow canvases — one RocketVerifier node instead of an HTTP Request node plus a Set node plus error-handling boilerplate

Installing the node

In n8n, go to Settings → Community Nodes → Install and enter:

n8n-nodes-rocketverifier

Self-hosting instead? Install it directly into your n8n nodes directory:

cd ~/.n8n/nodes
npm install n8n-nodes-rocketverifier

Restart n8n and you’ll find RocketVerifier in the node panel.

Setting up credentials

Create a RocketVerifier API credential with your API key from Dashboard → API Keys. Use a sandbox key (rv_test_...) against @sandbox.rocketverifier.com addresses while you build the workflow — it exercises the real API without spending credits.

Operations available

CategoryOperationWhat it does
EmailVerifyReal-time single-address verification (1 credit)
Batch JobCreateSubmit a list of emails for async bulk verification
Batch JobGet StatusPoll progress and summary counts
Batch JobGet ResultsFetch paginated per-email results, filterable by classification
CreditsCheckGet current balance and today’s/this month’s usage

Three workflows worth stealing

1. Verify on signup. Trigger on a new Google Sheets row or Typeform submission → RocketVerifier: Verify → branch on status == "deliverable" before pushing the contact into Mailchimp or HubSpot. Kills bad signups before they ever reach your ESP.

2. Nightly list cleanup. Schedule trigger → pull your list from a database or sheet → RocketVerifier: Create Batch Job → wait/poll Get StatusGet Results → post a summary to Slack. Great for keeping a growing list clean without manual exports.

3. Credit monitoring. Schedule trigger (daily) → RocketVerifier: Check Credits → if balance is below a threshold, send yourself a Slack or email alert so you’re never caught mid-campaign with an empty tank.

Get started

Full setup instructions and workflow ideas are in the n8n integration docs. If you’d rather connect an AI agent than build a visual workflow, check out our new MCP server — same API, different interface.