get_profile
Retrieve detailed Weibo user profile information by providing the unique identifier (UID). Use this tool to access key user data for analysis or integration purposes.
Instructions
Get a Weibo user's profile information.
Returns:
dict: Dictionary containing user profile information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uid | Yes | The unique identifier of the Weibo user |
Input Schema (JSON Schema)
{
"properties": {
"uid": {
"description": "The unique identifier of the Weibo user",
"title": "Uid",
"type": "integer"
}
},
"required": [
"uid"
],
"type": "object"
}