网站备案

GET
https://api.mymzf.com/api/domain

接口描述

ICP网站备案查询版

请求参数

请求示例

var axios = require('axios')

var config = {
  method: 'get',
  url: 'https://api.mymzf.com/api/domain?web=mymzf.com'
}

axios(config)
  .then(function (response) {
    console.log(JSON.stringify(response.data))
  })
  .catch(function (error) {
    console.log(error)
  })

返回示例

{
    "status": 1,
    "data": {
        "count": 1,
        "rows": [
            {
                "input": "mymzf.com",
                "root_domain": "mymzf.com",
                "icp_no": "琼ICP备2023003520号-2",
                "icp_org": "澄迈快拼拼科技有限公司",
                "province": "海南省",
                "city": "省直辖县级行政区划",
                "district": "澄迈县",
                "address": "海南省澄迈县老城镇海南生态软件园二期腾讯众创空间307A"
            }
        ]
    },
    "req_id": "fcc8603effc75ccf5391"
}