备案查询网是一个在线ICP域名备案查询工具,ICP备案查询网(www.beiancx.com)提供icp备案查询、域名备案查询、网站备案号查询等备案信息查询工具,使用便捷高效,备案查询更快,还友查询的API接口。
备案查询网API接口
API接口1:https://beiancx.com/icp.php?url=baidu.com
API接口2:https://beiancx.com/icp2.php?url=baidu.com
数据返回格式:
{ "status": 200, "data": { "icp_domain": "baidu.com", "icp_type": "企业", "icp_subject": "北京百度网讯科技有限公司", "icp_numer": "京ICP证030173号", "review_date": "2019-05-16" } }
附上php本地调用api源码:
<?php
// 检查是否接收到域名参数
if (isset($REQUEST['url'])) {
$domain = $REQUEST['url'];
$apiUrl = 'https://www.beiancx.com/icp.php?url=' . urlencode($domain);
// 初始化 cURL
$ch = curl_init();
// 设置 cURL 选项
curl_setopt($ch, CURLOPT_URL, $apiUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// 设置请求头
$headers = [
'Content-Type: application/json',
];
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
// 执行请求
$response = curl_exec($ch);
echo $response;
}
?>
ICP域名备案查询工具
网站:https://www.beiancx.com
API接口1:https://beiancx.com/icp.php?url=baidu.com
API接口2:https://beiancx.com/icp2.php?url=baidu.com
转自:https://www.ahhhhfs.com/63742/