访问网络版的解决方案,挖掘和监测所有域名相关事件。
获得网络版企业级解决方案,以搜索和监控域名注册和所有权细节,了解品牌术语、模糊匹配、感兴趣的注册者等。
Detect and block access to and from dangerous domain names before malicious actors can weaponize them. Contact us today for more information.
解锁有关互联网资产及其所有权、基础资源和其他相关的全面情报信息。
域名、IP和DNS情报套餐可通过API查询,以可预测的价格进行每年订阅。
可为丰富产品内容和威胁狩猎等需求完整访问WHOIS、IP、DNS和子域名数据库。
多级 API 用户管理现已推出 - 管理机构中团队成员的个人 API 密钥。
了解更多curl https://emailverification.whoisxmlapi.com/api/bevService/request/completed -X POST -H "Content-Type: application/json" -d '{"apiKey": "YOUR_API_KEY", "id": 622, "format": "json"}'
{
"apiKey": "YOUR_API_KEY",
"id": 596,
"format": "csv"
}
apiKey |
Required. Get your personal API key on the My products page. |
id |
Required. Integer. ID of the request. |
format |
Optional. String. Used to specify the response format. Allowed values: "xml", "json", "csv". Default value: "json". |
{
"response": [
{
"emailAddress": "[email protected]",
"formatCheck": "true",
"smtpCheck": "null",
"dnsCheck": "false",
"freeCheck": "false",
"disposableCheck": "false",
"catchAllCheck": "null",
"result": "bad"
},
{
"emailAddress": "[email protected]",
"formatCheck": "true",
"smtpCheck": "true",
"dnsCheck": "true",
"freeCheck": "false",
"disposableCheck": "false",
"catchAllCheck": "true",
"mxRecords": [
"alt2.aspmx.l.google.com",
"alt3.aspmx.l.google.com",
"alt4.aspmx.l.google.com",
"aspmx.l.google.com",
"alt1.aspmx.l.google.com"
],
"result": "unknown"
},
{
"emailAddress": "[email protected]",
"formatCheck": "true",
"smtpCheck": "true",
"dnsCheck": "true",
"freeCheck": "true",
"disposableCheck": "false",
"catchAllCheck": "true",
"mxRecords": [
"mta6.am0.yahoodns.net",
"mta5.am0.yahoodns.net",
"mta7.am0.yahoodns.net"
],
"result": "unknown"
}
]
}
Code: 200 OK.
{
"response": {
"error": "Wrong request id"
}
}
Code: 422 Unprocessable Entity.
response |
The response object. Contains an array of verification results for each email address in the original request (see the documentation below). Responses to these request can be saved directly to disk. In case of an error it contains its description in the 'error' field. If there are multiple errors their descriptions are returned in the 'errors' array. |
result |
The result field may contains four values: 'ok', 'unknown', 'smtp-failed', 'bad'. The 'ok' value means that the email successful passed through the SMTP check, DNS check, and this email address isn’t disposable. The 'bad' value means that some of this checks (except SMTP check) were failed. The 'smtp-failed' value means the email address does not exist on the target SMTP server or temporary couldn't receive messages. The 'unknown' value means that email hosting supports "catch all feature". |
emailAddress
|
The email address to be verified.
|
formatCheck
|
Lets you know if there are any syntax errors in the email address. This is a basic check that’s
done to catch any simple typos or major errors. This value will be 'true' if there are no errors,
and 'false' otherwise. Behind the scenes, the API service is handling all these types of verification
checks for you in a number of interesting ways.
|
smtpCheck
|
Checks if the email address exists and can receive emails by using SMTP connection and
email-sending emulation techniques. This value will be 'true' if the email address exists and can
receive email over SMTP, and 'false' if the email address does not exist on the target SMTP server
or temporarily couldn't receive messages. The value will be null if the SMTP request could not be
completed, mailbox verification is not supported on the target mailbox provider, or not applicable.
|
dnsCheck
|
Ensures that the domain in the email address, eg: gmail.com, is a valid domain. This value will be
'true' if the domain is good and 'false' otherwise. May be 'null' for invalid or non-existing
emails.
|
freeCheck
|
Check to see if the email address is from a free email provider like Gmail or not. This value will
be 'false' if the email address is not free, and 'true' otherwise. May be 'null' for invalid or
non-existing emails.
|
disposableCheck
|
Tells you whether or not the email address is disposable (created via a service like Mailinator).
This helps you check for abuse. This value will be 'false' if the email is not disposable, and
'true' otherwise. May be 'null' for invalid or non-existing emails.
|
catchAllCheck
|
Tells you whether or not this mail server has a “catch-all” address. This refers to a special type
of address that can receive emails for any number of non-existent email addresses under a particular
domain. Catch-all addresses are common in businesses where if you send an email to [email protected] and
another email to non-existent [email protected], both of those emails will go into the same inbox.
Possible values are 'true' or 'false'. May be 'null' for invalid or non-existing emails.
|
mxRecords
|
Mail servers list. May be absent for invalid or non-existing emails.
|