get_trendings
Retrieve real-time trending topics from Weibo using a customizable limit for hot search items. Ideal for monitoring popular discussions and analyzing social media trends.
Instructions
Get the current hot search topics on Weibo.
Returns:
list[dict]: List of dictionaries containing hot search items
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of hot search items to return, defaults to 15 |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 15,
"description": "Maximum number of hot search items to return, defaults to 15",
"title": "Limit",
"type": "integer"
}
},
"type": "object"
}