getUserLists
Fetch lists owned by a specific Twitter user, including details like creation date, follower count, and privacy status, with customizable result limits and fields.
Instructions
Get lists owned by a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listFields | No | Additional list fields to include in the response | |
maxResults | No | The maximum number of results to return (default: 100, max: 100) | |
username | Yes | The username of the user whose lists to fetch |
Input Schema (JSON Schema)
{
"properties": {
"listFields": {
"description": "Additional list fields to include in the response",
"items": {
"enum": [
"created_at",
"follower_count",
"member_count",
"private",
"description"
],
"type": "string"
},
"type": "array"
},
"maxResults": {
"description": "The maximum number of results to return (default: 100, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"username": {
"description": "The username of the user whose lists to fetch",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}