About this endpoint
What it does
Validates the syntax of an email address without performing any DNS lookup. It returns a JSON object describing the parsed email parts and whether the address is syntactically valid.
Query Parameter(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| String | Yes | The email address to validate. |
Response
Returns a JSON object with email, local, valid, and domain fields. email, local, and domain are strings, and valid is a boolean indicating whether the syntax check passed.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| String | No | The email address as returned by the service. | |
| local | String | No | The local part of the email address. |
| valid | Boolean | No | Whether the email address is syntactically valid. |
| domain | String | No | The domain part of the email address. |