You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| is_free | Whether the email address is from a free email provider like Gmail or Hotmail. Return values: True, False|
47
-
| is_syntax | Whether the email address is syntactically correct. Return values: True, False|
48
-
| is_domain | Whether the email address has a valid MX record in its DNS entries. Return values: True, False, - (- means not applicable) |
49
-
| is_smtp | Whether the mail servers specified in the MX records are responding to connections. Return values: True, False, - (- means not applicable) |
50
-
| is_verified | Whether the mail server confirms that the email address actually exist. Return values: True, False, - (- means not applicable) |
51
-
| is_server_down | Whether the mail server is currently down or unresponsive. Return values: True, False, - (- means not applicable) |
52
-
| is_greylisted | Whether the mail server employs greylisting where an email has to be sent a second time at a later time. Return values: True, False, - (- means not applicable) |
53
-
| is_disposable | Whether the email address is a temporary one from a disposable email provider. Return values: True, False, - (- means not applicable) |
54
-
| is_suppressed | Whether the email address is in our blacklist. Return values: True, False, - (- means not applicable) |
55
-
| is_role | Whether the email address is a role-based email address like admin@example.net or webmaster@example.net. Return values: True, False, - (- means not applicable) |
56
-
| is_high_risk | Whether the email address contains high risk keywords. Return values: True, False, - (- means not applicable) |
57
-
| is_catchall | Whether the email address is a catch-all address. Return values: True, False, Unknown, - (- means not applicable) |
46
+
| is_free | Whether the email address is from a free email provider like Gmail or Hotmail. Return values: true, false, null (null means not applicable)|
47
+
| is_syntax | Whether the email address is syntactically correct. Return values: true, false|
48
+
| is_domain | Whether the email address has a valid MX record in its DNS entries. Return values: true, false, null (null means not applicable) |
49
+
| is_smtp | Whether the mail servers specified in the MX records are responding to connections. Return values: true, false, null (null means not applicable) |
50
+
| is_verified | Whether the mail server confirms that the email address actually exist. Return values: true, false, null (null means not applicable) |
51
+
| is_server_down | Whether the mail server is currently down or unresponsive. Return values: true, false, null (null means not applicable) |
52
+
| is_greylisted | Whether the mail server employs greylisting where an email has to be sent a second time at a later time. Return values: true, false, null (null means not applicable) |
53
+
| is_disposable | Whether the email address is a temporary one from a disposable email provider. Return values: true, false, null (null means not applicable) |
54
+
| is_suppressed | Whether the email address is in our blacklist. Return values: true, false, null (null means not applicable) |
55
+
| is_role | Whether the email address is a role-based email address like admin@example.net or webmaster@example.net. Return values: true, false, null (null means not applicable) |
56
+
| is_high_risk | Whether the email address contains high risk keywords. Return values: true, false, null (null means not applicable) |
57
+
| is_catchall | Whether the email address is a catch-all address. Return values: true, false, null (null means not applicable) |
58
58
| mailboxvalidator_score | Email address reputation score. Score > 0.70 means good; score > 0.40 means fair; score <= 0.40 means poor. |
59
59
| time_taken | The time taken to get the results in seconds. |
60
-
| status | Whether our system think the email address is valid based on all the previous fields. Return values: True, False|
60
+
| status | Whether our system think the email address is valid based on all the previous fields. Return values: true, false|
61
61
| credits_available | The number of credits left to perform validations. |
62
-
| error_code | The error code if there is any error. See error table in the below section. |
63
-
| error_message | The error message if there is any error. See error table in the below section. |
62
+
|error.error_code | The error code if there is any error. See error table in the below section. |
63
+
|error.error_message | The error message if there is any error. See error table in the below section. |
64
64
65
65
## disposable_email(email_address)
66
66
@@ -71,10 +71,10 @@ Checks if the supplied email address is from a disposable email provider.
71
71
| Field Name | Description |
72
72
|-----------|------------|
73
73
| email_address | The input email address. |
74
-
| is_disposable | Whether the email address is a temporary one from a disposable email provider. Return values: True, False|
74
+
| is_disposable | Whether the email address is a temporary one from a disposable email provider. Return values: true, false|
75
75
| credits_available | The number of credits left to perform validations. |
76
-
| error_code | The error code if there is any error. See error table in the below section. |
77
-
| error_message | The error message if there is any error. See error table in the below section. |
76
+
|error.error_code | The error code if there is any error. See error table in the below section. |
77
+
|error.error_message | The error message if there is any error. See error table in the below section. |
78
78
79
79
## free_email(email_address)
80
80
@@ -85,10 +85,10 @@ Checks if the supplied email address is from a free email provider.
85
85
| Field Name | Description |
86
86
|-----------|------------|
87
87
| email_address | The input email address. |
88
-
| is_free | Whether the email address is from a free email provider like Gmail or Hotmail. Return values: True, False|
88
+
| is_free | Whether the email address is from a free email provider like Gmail or Hotmail. Return values: true, false|
89
89
| credits_available | The number of credits left to perform validations. |
90
-
| error_code | The error code if there is any error. See error table in the below section. |
91
-
| error_message | The error message if there is any error. See error table below. |
90
+
|error.error_code | The error code if there is any error. See error table in the below section. |
91
+
|error.error_message | The error message if there is any error. See error table below. |
0 commit comments