MailGuard E-Mail Validator

免费增值
通过 DarkShadowsDev | 已更新 2 months ago | Email
Health Check

N/A

README

Email Validation API

This API provides a service to validate email addresses and retrieve information related to the associated domain. Email validation ensures that the entered emails are valid and safe, and the API retrieves information about the domain for further analysis.

Usage

Validate Email Address

Endpoint: /validate_email

Method: GET

Request Parameters:

  • email (string): The email/domain address to be validated.

Example Request:

{
    "email": "user@domain.com" #You can also use directly the domain
}

Successful Response:

  • Status Code: 200 OK
  • Response Body:
{
    "email": "user@domain.com",
    "validation": true,
"status":{
    "is_valid":true,
    "reason": "Server is Online"
}
    "info_mx": {
        "domain": "domain.com",
         "mx_host":"mai.domain.com."
        "mx_ip":"0.0.0.0"
        "priority":100
    }
}

Error Response:

  • Status Code: 400 Bad Request
  • Response Body:
{
    "error": "Invalid domain"
}

Description

  • email: The email/domain address provided for validation.
  • is_valid: A boolean value indicating if the email address is valid.
  • info_mx: Information related to the domain associated with the email.

Note: The endpoint accepts either an email address or a domain. If a domain is provided, it will be validated as well.

关注者:0
资源:
使用条款
API 创建者:
Rapid account: Dark Shadows Dev
DarkShadowsDev
darkshadowsdev
登录并给 API 打分
打分:5 - 投票:1