访问网络版的解决方案,挖掘和监测所有域名相关事件。
获得网络版企业级解决方案,以搜索和监控域名注册和所有权细节,了解品牌术语、模糊匹配、感兴趣的注册者等。
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 密钥。
了解更多发出 API 请求时,使用服务器到服务器 OAuth 向 WhoisXML API 进行身份验证。这也称为双向 OAuth,其使用两步流程,不需要用户交互即可进行身份验证或授权。以下是相关流程。
用户还可以在 GitHub 上查看此脚本,了解如何将 WHOIS API 与服务器端 SSO 结合使用的示例。
使用accessToken授权类型生成访问口令牌。此授权类型的特点如下:
请注意,生成的accessToken将代替API请求中的apiKey参数。
curl --location 'https://main.whoisxmlapi.com/oauth/token' \
--header 'Authorization: Bearer %base64_encoded_API_key%' \
--header 'Content-Type: application/json' \
--data '{
"grantType": "access_token",
"expiresIn": 7200
}'
授权 |
授权类型 |
必填。生成访问口令牌的授权类型。 可接受的值: access_token 。 |
到期日期 |
可选。访问口令牌的有效期(以秒为单位)。 可接受的值: 1800 、 3600 、 7200 、 10800 。 默认值: 3600 。 |
outputFormat |
选填。响应输出格式。 可接受的值: JSON | XML 默认值: JSON |
{
"accessToken": "G2OIE2AKRCVDYFUJCV5PXXXXXXXXXXXX",
"expiresIn": 3600
}
使用响应结果中的accessToken值来验证 API 请求。将结果值替换到apiKey字段中,就像使用没有 OAuth 的普通 API 密钥一样。
{
"code": 401,
"messages": "Access restricted. Check the credits balance or enter the correct API key."
}
{
"code": 422,
"messages": {
"grantType": [
"The selected grant type is invalid."
]
}
}
curl --location 'https://www.whoisxmlapi.com/whoisserver/WhoisService?domainName=google.com' \ --header '授权:Bearer %accessToken%'
curl --location 'https://www.whoisxmlapi.com/whoisserver/WhoisService' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer %accessToken%' \
--data '{
"domainName": "google.com"
}'