POST
/email/validateValidate Email
Verify if an email address is valid and deliverable.
POSThttps://www.startuphub.ai/api/v1/email/validate
Request
curl -X POST "https://www.startuphub.ai/api/v1/email/validate" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]"}'Parameters
emailstringrequiredEmail address to validate
Response
json
{
"email": "[email protected]",
"valid": true,
"reason": "Verified",
"details": null
}