Use this Restful endpoint to validate an email address and return information about its syntax, domain, deliverability and activity status when available, using the GET method.
Related Email documentation:
- Email introduction
- Restful Email POST request
- Restful LOOKUPEMAIL response
- Restful Email Swagger documentation
Restful Email GET request
Endpoint
GET https://{SERVER_ADDRESS}/{VERSION}/email/lookup?email={EMAIL}&rectify={RECTIFY}&extendedSyntax={EXTENDED_SYNTAX}&checkUser={CHECK_USER}&timeout={TIMEOUT}
Replace the values in braces with your own information.
| Parameter | Description | Mandatory/Optional |
|---|---|---|
| Email address to validate. | Mandatory | |
| rectify |
true to propose a domain correction when the entered domain is unknown; false otherwise. |
Optional |
| extendedSyntax |
true to accept email addresses with extended syntax; false to limit checks to standard email addresses. |
Optional |
| checkUser |
true to check the part before the @ sign; false to check only the domain. |
Optional |
| timeout | Maximum query time for verification, in seconds. | Optional |
Related to