Automate email verification workflows with n8n
n8n is a free and open-source workflow automation tool that lets you connect APIs and services visually. With BounceRaptor's MCP server, you can add email verification steps to any n8n workflow using the HTTP Request node.
Navigate to Settings → MCP Keys in your BounceRaptor dashboard. Create a new MCP key with the description "n8n Integration". Copy the key — you'll need it in the next step.
In your n8n workflow, add an HTTP Request node and configure it as follows:
POST
https://bounceraptor.com/api/v1/verify-email/
Authorization: Bearer YOUR_MCP_KEY Content-Type: application/json
{
"email": "{{ $json.email }}"
}
The API returns a JSON object with the verification result. You can use n8n's Set or IF node to branch based on the result:
{
"email": "[email protected]",
"status": "valid | invalid | catch_all | unknown",
"syntax_valid": true,
"mx_valid": true,
"smtp_verified": true,
"is_spam_trap": false,
"is_role_based": false,
"provider": "Google Workspace"
}
Example workflow: verify a list of emails and route valid ones to your mailing list, while flagging invalid ones for review:
status === "valid"Your n8n workflows share the same API rate limits as your BounceRaptor plan. Add a Wait node between batches if you need to throttle requests.
Professional email verification platform
Protect your reputation • Maximize deliverability
© 2026 BounceRaptor. All rights reserved.