查询域名解析API
查询域名所有解析信息

接口地址: http://你的域名/api/dm-domain

返回格式: UTF-8/JSON

请求方式: GET/POST

请求示例: http://你的域名/api/dm-domain?domain=api.qqsuu.cn

请求参数说明:

名称 类型 必填 示例值 说明
domain string api.qqsuu.cn 域名

返回参数说明:

名称 类型 示例值 说明
host string api.qqsuu.cn 主机名
class string IN 类型
ttl int 520 有效时间
type string A 解析记录类型
ip string 42.156.141.13 主机IP地址

返回示例:

{
  "code": 200,
  "msg": "success",
  "newslist": [
    {
      "host": "api.qqsuu.cn",
      "class": "IN",
      "ttl": 520,
      "type": "A",
      "ip": "42.156.141.13"
    },
    {
      "host": "api.qqsuu.cn",
      "class": "IN",
      "ttl": 86400,
      "type": "NS",
      "target": "vip2.alidns.com"
    },
    {
      "host": "api.qqsuu.cn",
      "class": "IN",
      "ttl": 86400,
      "type": "NS",
      "target": "vip1.alidns.com"
    },
    {
      "host": "api.qqsuu.cn",
      "class": "IN",
      "ttl": 520,
      "type": "SOA",
      "mname": "vip1.alidns.com",
      "rname": "hostmaster.hichina.com",
      "serial": 2016112017,
      "refresh": 3600,
      "retry": 1200,
      "expire": 3600,
      "minimum-ttl": 360
    },
    {
      "host": "api.qqsuu.cn",
      "class": "IN",
      "ttl": 520,
      "type": "MX",
      "pri": 1,
      "target": "mxdomain.qq.com"
    }
  ]
}

错误码格式说明:

名称 类型 说明
code String 返回的状态码 -1/1 失败/成功
msg String 返回结果提示信息!

代码示例:

暂无示例.