## 抖音热点榜 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/60/3f/603f2a0dec708e4d15b97855f337b302_200x200.png) > 返回50条抖音App热点视频话题榜单数据,每3分钟同步更新一次。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/hot/douyin ``` ### 请求参数 无 ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | hotindex | int | 9023742 | 热搜榜指数 | | label | int | 1 | 标签类型,1新,2荐,3热 | | word | string | 赵丽颖张慧雯斗舞 | 热点话题 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->hotDouyin() ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "hotindex":5382761, "label":1, "word":"黄景瑜瘦了" }, { "hotindex":5266329, "label":0, "word":"失联20年北大博士后被找到" } ] } ~~~