网站备案查询
最后更新于:2022-04-02 08:19:01
## 网站备案查询
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/fb/92/fb92b11297e6ab2f9edbf54e06ec740f_200x200.png)
> 查询国内网站ICP备案信息、ICP备案号、主体名称、备案类型等信息。
## 接口费用( [点击购买](https://market.topthink.com/product/153))
> 最低 0.01元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/website/beian
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| domain| string | 是 | 域名|
### 返回`data`参数
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| main\_name | string | 北京百度网讯科技有限公司 | 备案主体名称 |
| icp\_type | string | 企业 | 主题类型 |
| icp\_number | string | 京ICP证030173号-1 | ICP备案编号 |
| icp\_name | string | 百度 | ICP备案名称 |
| domain | string | 2019-05-21 | 备案信息更新时间 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->websiteBeian()
->withDomain('baidu.com')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"main_name":"北京百度网讯科技有限公司",
"icp_type": "企业",
"icp_number": "京ICP证030173号-1",
"icp_name": "百度",
"domain":"baidu.com",
"update_time":"2019-05-21"
}
]
}
~~~
';