Getting Started
The sandbox environment lets you test your email verification integration without consuming credits or making real SMTP connections. To enable sandbox mode, add the X-EV-Sandbox: true header to any API request, or set sandbox: true in any SDK's configuration. The sandbox is available on all plans, including the free tier, and requires no separate API key. All endpoints work identically in sandbox mode, including single verification, batch processing, webhooks, and history retrieval, making it perfect for development, staging, and CI/CD pipelines.
Sandbox results are deterministic and based on email address patterns. Emails starting with valid always return "deliverable," those starting with invalid return "undeliverable," risky returns a risky result, catchall returns a catch-all detection, disposable flags the address as disposable, and role marks it as a role-based address. Any email that does not match these prefixes returns a random but realistic result. Response times in sandbox mode are artificially fast (under 50ms) compared to production verification, which may take 2-10 seconds due to real SMTP probing. Use sandbox mode during development and automated testing, then remove the header or configuration flag when deploying to production.