Bulk Email Validation
UtilitiesBulk Email Validation API — the same deliverability check as Email Validation, for up to 100 addresses in a single billable call. Every entry in results has exactly the shape a single-address lookup returns, so one parser handles both endpoints. Duplicate addresses are collapsed before the lookup, and total_requested versus total_returned lets you detect a short response. Built for cleaning imported lists, validating CSV uploads and periodic re-verification of a mailing database.
🌍 Global — Available worldwide
What Bulk Email Validation Is Used For
List cleaning before a campaign
Validate up to 100 addresses in a single billable call before a send.
Imported data hygiene
Clean a purchased or migrated list before it enters your CRM.
One parser for both endpoints
Read entries in exactly the shape a single-address lookup returns.
Short response detection
Compare total_requested against total_returned to confirm nothing was silently dropped.
Quick Start
1. Copy your API key from Dashboard → API Keys
2. Send a POST request to /api/v1/email/validate/bulk
3. Pass the key as Authorization: Bearer <key>
4. Read the result from the data object in the JSON response
cURL
curl -X POST https://app.way2api.com/api/v1/email/validate/bulk \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"emails":["[email protected]","not-an-email"]}'