致力于为开发者提供便捷、免费、稳定、快速的免费Web API数据接口服务。
共收录了
43 个接口
查询域名所有解析信息
接口地址: https://www.qqsuu.cn/api/dm-domain
返回格式: JSON
请求方式: GET/POST
请求示例: https://www.qqsuu.cn/api/dm-domain?domain=qq.com
所有接口需携带秘钥,以免更新导致请求失败!
请求参数说明:
| 名称 | 必填 | 类型 | 说明 |
|---|---|---|---|
| domain | 是 | String | 域名 |
返回参数说明:
| 名称 | 类型 | 说明 |
|---|---|---|
| host | String | 主机名 |
| class | String | 类型 |
| ttl | int | 有效时间 |
| type | String | 解析记录类型 |
| ip | String | 主机IP地址 |
返回示例:
{
"code": 200,
"msg": "success",
"data": {
"list": [
{
"host": "qq.com",
"class": "IN",
"ttl": 337,
"type": "A",
"ip": "113.108.81.189"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 337,
"type": "A",
"ip": "123.150.76.218"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 337,
"type": "A",
"ip": "203.205.254.157"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 10,
"type": "NS",
"target": "ns1.qq.com"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 10,
"type": "NS",
"target": "ns4.qq.com"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 10,
"type": "NS",
"target": "ns3.qq.com"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 10,
"type": "NS",
"target": "ns2.qq.com"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 600,
"type": "SOA",
"mname": "ns1.qq.com",
"rname": "webmaster.qq.com",
"serial": 1330914143,
"refresh": 3600,
"retry": 300,
"expire": 86400,
"minimum-ttl": 300
},
{
"host": "qq.com",
"class": "IN",
"ttl": 5528,
"type": "MX",
"pri": 30,
"target": "mx1.qq.com"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 5528,
"type": "MX",
"pri": 10,
"target": "mx3.qq.com"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 5528,
"type": "MX",
"pri": 20,
"target": "mx2.qq.com"
},
{
"host": "qq.com",
"class": "IN",
"ttl": 2946,
"type": "TXT",
"txt": "v=spf1 include:spf.mail.qq.com -all",
"entries": [
"v=spf1 include:spf.mail.qq.com -all"
]
}
]
}
}
错误码格式说明:
| 错误码 | 类型 | 说明 |
|---|---|---|
| 暂无错误码说明 | ||
代码示例:
暂无示例