search_topics
Search for relevant topics on Weibo using a keyword. Retrieve a list of results with options to specify the result limit and page number for efficient topic discovery.
Instructions
Search for topics on Weibo based on a keyword.
Returns:
list[dict]: List of dictionaries containing search results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | Search term to find content | |
limit | No | Maximum number of results to return, defaults to 15 | |
page | No | Page number for pagination, defaults to 1 |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"description": "Search term to find content",
"title": "Keyword",
"type": "string"
},
"limit": {
"default": 15,
"description": "Maximum number of results to return, defaults to 15",
"title": "Limit",
"type": "integer"
},
"page": {
"default": 1,
"description": "Page number for pagination, defaults to 1",
"title": "Page",
"type": "integer"
}
},
"required": [
"keyword"
],
"type": "object"
}