getListMembers
Retrieve members from a specific Twitter list using the list ID, with options to define result limits and include additional user details for enriched insights.
Instructions
Get members of a Twitter list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listId | Yes | The ID of the list | |
maxResults | No | The maximum number of results to return (default: 100, max: 100) | |
userFields | No | Additional user fields to include in the response |
Input Schema (JSON Schema)
{
"properties": {
"listId": {
"description": "The ID of the list",
"type": "string"
},
"maxResults": {
"description": "The maximum number of results to return (default: 100, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"userFields": {
"description": "Additional user fields to include in the response",
"items": {
"enum": [
"description",
"profile_image_url",
"public_metrics",
"verified",
"location",
"url"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"listId"
],
"type": "object"
}