## 微博热搜榜 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/56/91/56917cfb5298f20cbea0912ee3e86d6b_200x200.png) > 该接口会输出微博热搜前50个话题的相关数据。热搜榜单接API接口,每30分钟更新一次。热搜链接https://s.weibo.com/weibo?q=关键词。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/hot/weibo ``` ### 请求参数 无 ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | hotword | string | 失踪女童确认曾在漳州出现 | 热搜话题 | | hotwordnum | string | 129940 | 热搜指数 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->hotWeibo() ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "hotword":"失踪女童确认曾在漳州出现", "hotwordnum":"129940" }, { "hotword":"沈佳妮给朱亚文备注是大腻乎", "hotwordnum":"101845" }, { "hotword":"为什么中国急着垃圾分类", "hotwordnum":"60143" }, { "hotword":"闫桉宋雨琦好甜", "hotwordnum":"55388" }, { "hotword":"WE现场加油声音被消音", "hotwordnum":"54237" } ] } ~~~