网安备案查询
最后更新于:2022-04-02 08:18:59
## 网安备案查询
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2d/af/2dafc7abe648096298a6441569cce1bc_200x200.png)
> 根据网站域名查询对应的公安网安备案信息
## 接口费用( [点击购买](https://market.topthink.com/product/227))
> 最低 0.001元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/website/wabeian
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| domain| string | 是 | 域名 |
### 返回`data`参数
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| site\_name | string | 百度 | 网站名称 |
| domain | string | baidu.com | 网站域名 |
| com\_type | string | 企业单位 | 主体类型 |
| site\_type | string | 交互式 | 网站类型,交互式或非交互式 |
| owner\_name | string | 北京百度网讯科技有限公司 | 网站主体 |
| record\_no | string | 11000002000001 | 备案号 |
| ps\_address | string | 北京市网安总队 | 备案机关单位 |
| filing\_time | string | 2016-07-13 | 备案时间 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->websiteWabeian()
->withDomain('baidu.com')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"site_name":"百度",
"domain":"baidu.com",
"com_type":"企业单位",
"site_type":"交互式",
"owner_name":"北京百度网讯科技有限公司",
"record_no":"11000002000001",
"ps_address":"北京市网安总队",
"filing_time":"2016-07-13"
}
]
}
~~~
';