ICP备案查询
213
领酷API接口大全
接口地址
http://api.ilingku.com/int/v1/icp
返回格式
json
请求方式
get/post
请求示例
http://api.ilingku.com/int/v1/icp?url=qq.com
参数说明
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
url | 是 | string | 需要查询备案信息的域名 |
返回数据
{
"code": 200,
"msg": "success",
"data": {
"url": "qq.com",
"organizer_name": "深圳市腾讯计算机系统有限公司",
"nature": "企业",
"license": "粤B2-20090059-5",
"website_name": "",
"website_home": "www.qq.com",
"audit_time": "2022-09-06 15:51:52"
}
}
示例代码
<?php
header("Content-Type:text/json;charset=UTF-8");
$url = $_GET["url"];
$url = "http://api.ilingku.com/int/v1/icp?url=" . $url;
$data = file_get_contents($url);
echo $data;
?>