get_fans
Retrieve a Weibo user's fan details by providing their unique ID. Returns a list of fan data with options to specify pagination and result limits for efficient data collection.
Instructions
Get a Weibo user's fans.
Returns:
list[dict]: List of dictionaries containing fan information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of fans to return, defaults to 15 | |
page | No | Page number for pagination, defaults to 1 | |
uid | Yes | The unique identifier of the Weibo user |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 15,
"description": "Maximum number of fans to return, defaults to 15",
"title": "Limit",
"type": "integer"
},
"page": {
"default": 1,
"description": "Page number for pagination, defaults to 1",
"title": "Page",
"type": "integer"
},
"uid": {
"description": "The unique identifier of the Weibo user",
"title": "Uid",
"type": "integer"
}
},
"required": [
"uid"
],
"type": "object"
}