Validate email
Email
Validate email
Validate an email address by performing the following checks:
- Checks if the provided email address is valid.
- Returns metadata about the email, such as:
- Validation status (e.g.,
Valid). - The Internet Service Provider (ISP) associated with the email.
- Mail Exchange (MX) records for the email domain.
- Sender Policy Framework (SPF) records for the domain.
- Includes additional details about the validation process, such as the rules applied and any errors encountered.
Request body must be JSON: {"email": "user@example.com"}.
Improperly formatted emails return a 422 validation error from FastAPI.
POST
Validate email
Last modified on March 23, 2026