API REFERENCE
Single Verify
Single Email Verify
Verify one email address in real time. Returns a result in 1–3 seconds. Accepts an API key or a JWT. Consumes one unit from your monthly quota.
POST
/verification/singleVerify a single email address.
Request
curl -X POST https://api.bouncecheck.email/api/v1/verification/single \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]"}'Response
{
"email": "[email protected]",
"is_valid": true,
"status": "Valid",
"message": "Address is deliverable"
}
See Understanding Results for the meaning of each field.