搜狗收录量
最后更新于:2022-04-02 08:18:56
## 搜狗收录量
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/df/f4/dff46d91cfc1e9e3f05be89ab4f87ecb_247x224.png)
> 查询网站域名搜狗搜索收录量
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/website/sogou
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| 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->websiteSogou()
->withDomain('thinkphp.cn')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"count": "130725",
"time": "2020-10-23 11:12:47"
}
]
}
~~~
';