search_users
Find Weibo users by entering a keyword. Retrieve a list of user profiles with details such as names and handles, customizable with pagination and result limits for precise searches.
Instructions
Search for Weibo users based on a keyword.
Returns:
list[dict]: List of dictionaries containing user information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | Search term to find users | |
limit | No | Maximum number of users to return, defaults to 5 | |
page | No | Page number for pagination, defaults to 1 |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"description": "Search term to find users",
"title": "Keyword",
"type": "string"
},
"limit": {
"default": 5,
"description": "Maximum number of users to return, defaults to 5",
"title": "Limit",
"type": "integer"
},
"page": {
"default": 1,
"description": "Page number for pagination, defaults to 1",
"title": "Page",
"type": "integer"
}
},
"required": [
"keyword"
],
"type": "object"
}