Integrate BounceRaptor email verification into your applications and AI workflows
Verify emails programmatically from any language or platform
Verify a single email address. Returns detailed verification status, MX records, and deliverability assessment.
/api/v1/verify-email/
{
"email": "[email protected]",
"project_id": "optional-project-id"
}
Successful verification returns email status, verification layers passed, and spam trap indicators.
{
"email": "[email protected]",
"status": "valid",
"syntax_valid": true,
"mx_valid": true,
"smtp_verified": true,
"is_spam_trap": false,
"is_role_based": false,
"provider": "Google Workspace"
}
curl -X POST \
https://bounceraptor.com/api/v1/verify-email/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email":"[email protected]"}'
import requests
resp = requests.post(
"https://bounceraptor.com/api/v1/verify-email/",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
json={"email": "[email protected]"}
)
print(resp.json())
const resp = await fetch(
"https://bounceraptor.com/api/v1/verify-email/",
{
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
email: "[email protected]"
})
}
);
const data = await resp.json();
console.log(data);
All API requests require a Bearer token for authentication
Include your API key in the Authorization header as Bearer YOUR_API_KEY
All API traffic is encrypted over HTTPS. Your API keys are never exposed in transit.
Model Context Protocol — let AI agents verify emails natively
The Model Context Protocol (MCP) is an open protocol that enables AI models and agents to interact with external tools and services through a standardized JSON-RPC 2.0 interface. With BounceRaptor's MCP server, your AI assistants can verify email addresses directly within their reasoning loops.
Add this to your MCP client configuration to connect BounceRaptor:
{
"mcpServers": {
"bounceraptor": {
"serverUrl": "https://bounceraptor.com/api/mcp/verify-email/",
"headers": {
"Authorization": "Bearer YOUR_MCP_KEY"
}
}
}
}
Verify a single email address through 3-layer validation. Returns status, MX records, spam trap indicators, and provider info.
input: { email: string }
Verify multiple email addresses in a single call. Asynchronous processing with result tracking.
input: { emails: string[] }
Query the verification status of a previously submitted batch by its tracking ID.
input: { batch_id: string }
Your AI client discovers BounceRaptor tools via the MCP handshake and tools/list endpoint
When the AI needs email verification, it decides to call the verify-email tool
BounceRaptor performs 3-layer verification and returns structured results via JSON-RPC
The AI incorporates verification results into its response or workflow automatically
Connect BounceRaptor with your favorite MCP-compatible tools
Automate email verification workflows with n8n using the HTTP Request node and BounceRaptor's REST API
Verify emails directly within Claude Code sessions via MCP server integration
Run email verification actors on the Apify platform — Node.js and Python SDK support
Verify emails via Google Gemini CLI using MCP server integration
Connect BounceRaptor to OpenClaw for AI-assisted email verification and data enrichment workflows
Deploy BounceRaptor as a tool within Hermes Agent for autonomous email verification tasks
Install BounceRaptor from the ChatGPT plugin marketplace or connect via MCP in ChatGPT Desktop
Available on Professional and Unlimited plans
Authorization: Bearer headerYour plan determines how many verifications you can perform
| Plan | Monthly Verifications | Rate Limit | API Access | MCP Access |
|---|---|---|---|---|
| Free | 1000 | Standard | ||
| Starter | 10000 | Standard | ||
| Professional | 50000 | Standard | ||
| Unlimited | Unlimited | Standard |
Get your API key and start integrating in minutes
Get Started for Free
Professional email verification platform
Protect your reputation • Maximize deliverability
© 2026 BounceRaptor. All rights reserved.