getUserTimeline
Fetch tweets from a specific user's timeline by providing their username, with options to limit results and include additional tweet fields.
Instructions
Get tweets from a specific user's timeline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Maximum number of tweets to return (default: 10, max: 100) | |
tweetFields | No | Additional tweet fields to include | |
username | Yes | The username of the user whose timeline to fetch |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"description": "Maximum number of tweets to return (default: 10, max: 100)",
"type": "number"
},
"tweetFields": {
"description": "Additional tweet fields to include",
"items": {
"type": "string"
},
"type": "array"
},
"username": {
"description": "The username of the user whose timeline to fetch",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}