# 微信热搜榜
>[danger] 免费接口,每日100次免费调用
## 接口调用([调用须知](https://www.kancloud.cn/chimney/cn-api/2491302))
>[info] 微信公众平台搜索热词数据,系统每小时更新一次。
## 请求地址
~~~
GET https://api.cnbook.top/wechat/word
~~~
## 返回结果说明
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| hotword | string | 全国多地迎入秋后首场降雪 | 热词 |
| index | float | 100 | 热度,取值范围为[1,100],越高越热 |
| url | string | http://weixin.sogou.com/weixin?type=2&ie=utf8&s_from=hotnews&query=%E5%85%A8%E5%9B%BD%E5%A4%9A%E5%9C%B0%E8%BF%8E%E5%85%A5%E7%A7%8B%E5%90%8E%E9%A6%96%E5%9C%BA%E9%99%8D%E9%9B%AA | 链接 |
#### 返回示例
~~~
{
"code": 0,
"message": "success",
"data": [
{
"hotword": "全国多地迎入秋后首场降雪",
"index": 100,
"url": "http://weixin.sogou.com/weixin?type=2&ie=utf8&s_from=hotnews&query=%E5%85%A8%E5%9B%BD%E5%A4%9A%E5%9C%B0%E8%BF%8E%E5%85%A5%E7%A7%8B%E5%90%8E%E9%A6%96%E5%9C%BA%E9%99%8D%E9%9B%AA"
},
{
"hotword": "山西为何遭遇罕见秋汛",
"index": 93,
"url": "http://weixin.sogou.com/weixin?type=2&ie=utf8&s_from=hotnews&query=%E5%B1%B1%E8%A5%BF%E4%B8%BA%E4%BD%95%E9%81%AD%E9%81%87%E7%BD%95%E8%A7%81%E7%A7%8B%E6%B1%9B"
}
],
"trace": 1634057653
}
~~~