twitter_user_tweets
Fetch recent posts from a sports club or insider Twitter account by numeric user ID. Returns post text, timestamps, and public metrics for analysis.
Instructions
An account's recent posts (club announcements, insider news). Resolve the id with twitter_user_by_username first.
Returns: {data:[{id, text, created_at, public_metrics}], meta:{result_count, newest_id, next_token}}
Auth: needs your own key in X_BEARER_TOKEN.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Numeric user id. Required — part of the URL path. | |
| exclude | No | CSV of retweets and/or replies to drop. | |
| end_time | No | ISO 8601 upper bound. | |
| since_id | No | Only posts newer than this id. | |
| start_time | No | ISO 8601 lower bound. | |
| max_results | No | Results per page (5-100). | |
| tweet_fields | No | Post fields (CSV). | created_at,public_metrics,lang |
| pagination_token | No | Pagination token. |