get_hot_search
Fetch trending topics from the Weibo hot search list. Specify a limit to retrieve the desired number of top trending entries for analysis or monitoring.
Instructions
获取当前微博热搜榜的热门话题列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | Yes | 返回的最大热搜条目数量 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "返回的最大热搜条目数量",
"type": "number"
}
},
"required": [
"limit"
],
"type": "object"
}