twitter_user_tweets
Retrieve recent posts from a specific Twitter account using its numeric user ID. For sports clubs and insiders, use this to access announcements and news for cross-provider 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. |