Bulk Email Validation Request
UtilitiesHow to call Bulk Email Validation — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/email/validate/bulk
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| emails | array | Required | Array of 1–100 email addresses to validate, e.g. ["[email protected]", "[email protected]"]. Duplicates are removed. |
Request Body
{
"emails": [
"[email protected]",
"not-an-email"
]
}
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"]}'
🚀 Send Request