Open signup brings the wrong users
You want only approved users, but open registration lets in abusers and low-fit accounts. Manual checks take time and still miss bad signups.
Approve exactly who can register or receive emails by specific address or entire domain. Control access with one `block` field, without building custom whitelist logic across services.
No credit card required. Test it with free credits.
for allow or deny decision (`block`)
exact email and full domain
whitelist mode when policy changes
policy checks in verification response
Keep only approved users and recipients in your flows while centralizing policy decisions in one API response.
You want only approved users, but open registration lets in abusers and low-fit accounts. Manual checks take time and still miss bad signups.
Signup flow, CRM sync, and campaign tools all need the same policy, but each service implements it differently and drifts over time.
When only certain customers should receive email, broad lists waste campaign budget and dilute metrics with recipients outside your policy.
Define who is allowed once, then make policy decisions from one field in every verification result.
Add exact emails like [email protected] or domains like company.com to define who is allowed.
Turn whitelist on when only listed emails and domains should be allowed. Turn it off when strict allow-only rules are not required.
Use the `block` field in API response. `block: true` means deny, `block: false` means allow.
Verification API response example
GET /v1/[email protected]\nX-API-Key: your-api-key\n\n{\n "valid": true,\n "block": false,\n "domain": "customer.org"\n}Exact email
Allow one specific address when only selected users should pass.
Domain
Allow all mailboxes on approved domains like partner.com or customer.org.
Real teams use whitelist rules to protect onboarding, tighten campaign targeting, and keep policy logic out of application code.
Founder, B2B SaaS
“We switched whitelist on for enterprise trials and instantly stopped random signups. Sales now talks only to accounts we actually target.”
Lifecycle Marketing Lead
“For partner-only campaigns, we whitelist approved domains and avoid sending to the wrong audience. It cut wasted sends and improved campaign metrics.”
Product Manager, Marketplace
“Before Whitelist API we had custom allow logic in multiple services. Now every flow reads the same `block` field and behaves consistently.”
Use the `block` field in verification response. If `block` is true, deny action. If `block` is false, allow action.
Yes. Add exact addresses for precise access, or add domains like `company.com` to allow all mailboxes on that domain.
Yes. Whitelist mode can be enabled or disabled, so you can enforce strict allow-only behavior only when your flow requires it.
Yes. You manage whitelist rules once and read `block` from API response, instead of duplicating matching logic across backend services.
Blacklist has priority. If blacklist matches, `block` remains true even when whitelist contains the same email or domain.