Home

ICP备案查询API源码

返回值演示:

{
	"code": "200",
	"主办名称": "厦门享联科技股份有限公司",
	"主办类型": "企业",
	"备案号码": "闽ICP备08105208号-1",
	"网站名称": "站长之家",
	"网站首页": "www.chinaz.com bbs.chinaz.com s.chinaz.com",
	"审核时间": "2019/1/30 0:00:00"
}

接口源码:

<?php
header("Content-Type:text/html;charset=UTF-8");
date_default_timezone_set("PRC");
$url = "www.han8.net";
$result = file_get_contents("https://api.vvhan.com/api/icp?url=" . $url);
echo $result;
?>