访问网络版的解决方案,挖掘和监测所有域名相关事件。
获得网络版企业级解决方案,以搜索和监控域名注册和所有权细节,了解品牌术语、模糊匹配、感兴趣的注册者等。
在恶意攻击者利用危险域名进行攻击之前,检测并阻止对危险域名的访问。立即联系我们了解更多信息。
解锁有关互联网资产及其所有权、基础设施和其他属性的综合情报。
域名、IP和DNS情报套餐可通过API查询,以可预测的价格进行每年订阅。
可为丰富产品内容和威胁狩猎等需求完整访问WHOIS、IP、DNS和子域名数据库。
通过API优享服务获取优先的数据访问,另有额外福利,包括专业的团队支持、企业级的基础设施和SLA,以实现全面的可扩展性和高性能。
多级 API 用户管理现已推出 - 管理组织中团队成员的个人 API 密钥。
了解更多curl https://ip-geolocation.whoisxmlapi.com/api/bgservice/request/list -X POST -H "Content-Type: application/json" -d '{"apiKey": "YOUR_API_KEY", "page": 1, "onlyIds": false, "perPage": 10, "sort": "desc", "format": "json"}'
{
"apiKey": "YOUR_API_KEY",
"page": 1,
"format": "json",
"onlyIds": false,
"perPage": 10,
"sort": "desc"
}
apiKey |
必填。在我的产品页面获取您的个人 API 密钥。 |
page |
选填。整数。 用于与'perPage'一起对结果集进行分页。 默认值:1。 |
onlyIds |
选填。布尔值。 如果为真,则仅返回 ID 列表。 默认值:真。 |
perPage |
选填。整数。 将结果集的每一页限制为该请求数。 最小值:10;最大值:50。 默认值:10 |
sort |
选填。String。 指定响应中请求的顺序。 允许值:“asc”、“desc”。 默认值:“描述”。 |
format |
选填。String。 用于指定响应格式。 允许值:“xml”、“json”、“csv”。 默认值:“json”。 |
{
"response": {
"current_page": 1,
"data": [
{
"id": 596
},
{
"id": 595
},
{
"id": 544
}
],
"from": 1,
"last_page": 1,
"per_page": 10,
"to": 3,
"total": 3
}
}
Code: 200 OK.
{
"response": {
"current_page": 1,
"data": [
{
"id": 596,
"date_start": "1528377253",
"total_terms": 3,
"invalid_terms": 0,
"processed_terms": 3,
"failed_terms": 0,
"ready": 1
},
{
"id": 595,
"date_start": "1528377227",
"total_terms": 20,
"invalid_terms": 0,
"processed_terms": 20,
"failed_terms": 0,
"ready": 1
},
{
"id": 544,
"date_start": "1528204702",
"total_terms": 500,
"invalid_terms": 0,
"processed_terms": 500,
"failed_terms": 0,
"ready": 1
}
],
"from": 1,
"last_page": 1,
"per_page": 10,
"to": 3,
"total": 3
}
}
Code: 200 OK.
response |
响应对象。 包含带有用户请求成功数据数组的“数据”字段。 'from'和'to'字段表示为当前页面返回的请求的结果 ID 范围。 'per_page'是页面的大小, 'total'是结果中的请求数量。 'current_page'和'last_page'对应结果中的页数。 如果出现错误,它会在“错误”字段中包含其描述。如果有多个错误,它们的描述将返回到“错误”数组中。 |
data |
Array 用户请求的信息元素列表(如果'onlyIds'为true ,则每个元素只有'id'字段)。 |
data[k].id |
响应对象。 请求 ID。 |
data[k].date_start |
String 请求的开始 Unix 时间戳的字符串表示。 |
data[k].total_terms |
整数。 请求中的术语(IP、电子邮件、域名)总数。 |
data[k].invalid_terms |
整数。 无效条款的数量。 |
data[k].processed_terms |
整数。 已处理的术语数量。 |
data[k].failed_terms |
整数。 无法处理的术语数量。 |
data[k].ready |
整数。 如果处理已完成,则为 1,否则为 0。 |
from |
整数。 当前数据页面中的请求ID。 |
to |
整数。 最大限度。数据集当前页面中的请求ID。 |
per_page |
整数。 最大限度。结果集每页的请求数量。 |
total |
整数。 结果集中的请求总数。 |
current_page |
整数。 结果集中的当前页码。 |
last_page |
整数。 集合中最后一页的页码。 |
error |
String 错误描述。 |
errors |
Array 多条错误信息。 |