twitter_user_tweets_complete
Automatically paginate through a user's original tweets to retrieve their near-complete history in a single call, up to Twitter's 3,200-tweet ceiling.
Instructions
Get a user's near-complete original-tweet history in a single call, auto-paginating server-side up to a cap (Twitter's ~3200-tweet per-user ceiling). Heavier than twitter_user_tweets; use when you want the whole back-catalogue at once rather than page-by-page. Returns a flat tweet array. Requires the numeric user_id (resolve a handle first with twitter_user_info).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max | No | Maximum number of tweets to collect (default 800, hard ceiling 3200). Higher values take longer and cost more. | |
| user_id | Yes | Numeric Twitter/X user id. Required: this endpoint does not accept a username. Resolve a handle to a user_id first with twitter_user_info. |