Email Validation Request
UtilitiesHow to call 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
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| string | Required | Email address to validate, e.g. [email protected]. Max 254 characters. |
Request Body
{
"email": "[email protected]"
}
cURL
curl -X POST https://app.way2api.com/api/v1/email/validate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email":"[email protected]"}'
🚀 Send Request