## 360收录量 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/d0/2b/d02b7d0455b86137f13f41f2e0a219be_246x225.png) > 查询网站域名360搜索收录量 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/website/so ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | domain| string | 是 | 域名 | ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | count | string | 1487 | 收录数 | | time | string | 2020-10-15 23:35:03 | 查询时间 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->websiteSo() ->withDomain('thinkphp.cn') ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "count": "130725", "time": "2020-10-23 11:12:47" } ] } ~~~