主办单位备案查询(实时)
最后更新于:2022-04-02 08:19:44
## 主办单位备案(实时)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/0a/5d/0a5d54474c199ebed3eb15b0b00a1ae0_146x152.png)
> 根据主办单位实时返回查询所有备案信息
## 接口费用( [点击购买](https://market.topthink.com/product/359))
> 最低 0.01元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/website/company
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| companyName| string | 是 | 公司名称|
### 返回`data`参数
| 名称 | 类型 | 说明 |
| --- | --- | --- |
| SiteDomain | string | 网站域名 |
| SiteName | string | |
| SiteLicense | string | 许可证 |
| CompanyType | string | 公司类型 |
| VerifyTime | string | 验证时间 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->websiteCompany()
->withCompanyName('上海顶想信息科技有限公司')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"SiteDomain": "www.topthink.com",
"SiteName": "上海顶想信息科技有限公司",
"SiteLicense": "沪ICP备12007941号",
"CompanyType": "企业",
"VerifyTime": "2019-11-15 09:50:01",
"Domain": "topthink.com",
"Owner": "",
"LimitAccess": "否",
"ServiceLicence": "沪ICP备12007941号-1"
},
{
"SiteDomain": "www.onethink.cn",
"SiteName": "上海顶想信息科技有限公司",
"SiteLicense": "沪ICP备12007941号",
"CompanyType": "企业",
"VerifyTime": "2019-11-15 09:50:01",
"Domain": "onethink.cn",
"Owner": "",
"LimitAccess": "否",
"ServiceLicence": "沪ICP备12007941号-3"
},
{
"SiteDomain": "www.kancloud.cn",
"SiteName": "看云文档写作",
"SiteLicense": "沪ICP备12007941号",
"CompanyType": "企业",
"VerifyTime": "2019-11-15 09:50:01",
"Domain": "kancloud.cn",
"Owner": "",
"LimitAccess": "否",
"ServiceLicence": "沪ICP备12007941号-4"
},
{
"SiteDomain": "www.topthink.com",
"SiteName": "上海顶想信息科技有限公司",
"SiteLicense": "沪ICP备12007941号",
"CompanyType": "企业",
"VerifyTime": "2019-11-15 09:50:01",
"Domain": "topthink.net",
"Owner": "",
"LimitAccess": "否",
"ServiceLicence": "沪ICP备12007941号-1"
},
{
"SiteDomain": "www.thinkphp.cn",
"SiteName": "ThinkPHP框架",
"SiteLicense": "沪ICP备12007941号",
"CompanyType": "企业",
"VerifyTime": "2019-11-15 09:50:01",
"Domain": "thinkphp.org",
"Owner": "",
"LimitAccess": "否",
"ServiceLicence": "沪ICP备12007941号-2"
},
{
"SiteDomain": "www.kanclouds.cn",
"SiteName": "看云",
"SiteLicense": "沪ICP备12007941号",
"CompanyType": "企业",
"VerifyTime": "2019-11-15 09:50:01",
"Domain": "kanclouds.cn",
"Owner": "",
"LimitAccess": "否",
"ServiceLicence": "沪ICP备12007941号-5"
},
{
"SiteDomain": "www.thinkphp.cn",
"SiteName": "ThinkPHP框架",
"SiteLicense": "沪ICP备12007941号",
"CompanyType": "企业",
"VerifyTime": "2019-11-15 09:50:01",
"Domain": "thinkphp.cn",
"Owner": "",
"LimitAccess": "否",
"ServiceLicence": "沪ICP备12007941号-2"
},
{
"SiteDomain": "www.topthink.com",
"SiteName": "上海顶想信息科技有限公司",
"SiteLicense": "沪ICP备12007941号",
"CompanyType": "企业",
"VerifyTime": "2019-11-15 09:50:01",
"Domain": "topthink.org",
"Owner": "",
"LimitAccess": "否",
"ServiceLicence": "沪ICP备12007941号-1"
}
]
}
~~~
';