get_user_timeline
Retrieve a user’s most recent tweets from X (Twitter) by specifying the number of tweets to fetch, up to a maximum of 100. Streamline timeline access for analysis or integration.
Instructions
Get the user's recent tweets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of tweets to retrieve (max 100) |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"description": "Number of tweets to retrieve (max 100)",
"type": "number"
}
},
"type": "object"
}