小小API是一个稳定 快速 的 API 接口服务   点击加入QQ群

whois查询

GEThttps://v2.api-m.com/api/whois

接口描述

该接口可以查询域名whois信息,缓存一天。包含1000多个whois服务器

请求参数

广告
广告
广告
广告

请求示例

< !--导入JQ -->
  <script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>

  <script>
    $.ajax({
      url: 'https://v2.api-m.com/api/whois?domain=xxhzm.cn',
      type: 'get',
      beforeSend: function () {
        //请求中执行的代码
      },
      complete: function () {
        //请求完成执行的代码
      },
      error: function () {
        //请求成功失败执行的代码
      },
      success: function (res) {
        // 状态码 200 表示请求成功
        if (res.code === 200) {
          console.log(res)
        } else {
          console.log(res)
        }
      }
    })
  </script>

返回示例

{
	"code": 200,
	"msg": "数据请求成功",
	"data": {
		"Domain Name": "xxhzm.cn",
		"Sponsoring Registrar": "广州云讯信息科技有限公司",
		"Registrar URL": "",
		"Registrant": "张子阳",
		"Registrant Contact Email": "2595557847@qq.com",
		"Registration Time": "2021-07-24 18:23:46",
		"Expiration Time": "2025-07-24 18:23:46",
		"DNS Serve": [
			"ns3.dnsv2.com",
			"ns4.dnsv2.com"
		]
	}
}