CHANGELOG
Changelog
New updates and improvements to TwitterAPIs.
June 11, 2026
User Tweets Complete endpoint is live
Fetch a user's recent tweets-and-replies timeline with self-thread expansion, so thread continuations inside the recent window come back more completely than the standard /user/tweets page. $0.003 per call, 40 raw items per page before expansion.
- -GET /twitter/user/tweets/complete?userName=<handle>&cursor=<optional>
- -Expands detected self-threads (capped at 20 roots per page; `complete` flags when the cap is exceeded)
- -$0.0015 per call (vs $0.0008 for the standard /user/tweets page), priced for the extra thread-expansion work
- -Expanded threads can overlap adjacent pages, dedupe by tweet `id` when paginating with next_cursor
June 11, 2026
Tweet Thread endpoint is live
Resolve a full linear self-thread from any tweet in it, pass any tweet ID and get the ordered thread back, walking only the original author's linked replies. $0.005 per call.
- -GET /twitter/tweet/thread?id=<tweetId>
- -Works from any tweet in the thread, resolves to the root, then walks the author's self-replies in order
- -Pool-based read, no customer auth_token needed
- -Response flags when a very long thread is truncated at the pagination cap
June 10, 2026
Tweet Retweeters endpoint is live
Fetch the full list of users who reposted (retweeted) any tweet. $0.0008 per call, ~20 users per page with cursor pagination. Closes the competitor gap with twitterapi.io's get_tweet_retweeter.
- -GET /twitter/tweet/retweeters?id=<tweetId>&cursor=<optional>
- -Pool-based read, no customer auth_token needed
- -Returns tweetId, user_count, has_more, next_cursor, and a users array with full profile data (followers, verified status, bio, location, etc.)
- -Paginate by passing next_cursor until has_more is false
May 31, 2026
Twitter / X MCP Server (in development)
We are building an official Model Context Protocol server so you can plug the Twitter/X read API into Claude Desktop, Cursor, Cline, or any MCP-compatible client with a one-line install. It is not published yet. Calls will bill at the standard TwitterAPIs rate of $0.0008 per read. In the meantime, every endpoint is callable directly over plain REST.
- -Planned install: a single command, npx -y @twitterapis/mcp@latest, once it ships
- -Drop a small config block into claude_desktop_config.json or the Cursor MCP settings panel, restart the client, and the tools appear
- -Read tools will map onto TwitterAPIs read endpoints: tweet/advanced_search, tweet/detail, tweet/replies, tweet/thread, user/info, user/tweets, user/mentions, user/followers, and more
- -Will be open-sourced and published to npm at launch
- -Preview of the value prop, code samples, and FAQ at /mcp
May 20, 2026
Auto-recharge is live
Never run out of credits mid-job. Save a card on file and we'll top up your balance automatically when it drops below a threshold you set. Configure the threshold, recharge amount, and monthly cap from the dashboard.
- -Saved payment method, store a card via Stripe and manage it from the dashboard
- -Threshold trigger, auto-recharge fires when your balance drops below the amount you set (default $5)
- -Recharge amount, choose how much to top up each time (default $10)
- -Monthly cap, recharging pauses automatically once this calendar-month limit is hit (default $40)
- -Powered by your saved card on Stripe, no recurring subscription, only triggered charges when your balance is low
- -Manage or disable any time from the dashboard
May 6, 2026
Referral program is live
Earn 20% lifetime commission on every payment from anyone you refer. Open to every TwitterAPIs user, your unique referral link is generated automatically.
- -20% of gross on every payment from referred customers, lifetime
- -$5,000 / calendar year cap per affiliate
- -30-day pending holdback before commission becomes available
- -Convert available earnings to API credits with a +15% bonus
- -Find your link and balance at /dashboard/referrals
April 1, 2026
Account Info & Payment History endpoints
Two new free endpoints to check your TwitterAPIs account details and payment history. No credits deducted, rate limited to 30 requests per minute.
- -GET /account/me, credit balance, usage summary, account details
- -GET /account/payments, payment/top-up history
- -Free to use, no credits consumed
- -Rate limited: 30 requests/min per API key
March 31, 2026
User Affiliates endpoint is live
Get affiliated accounts of verified organizations (companies, brands, nonprofits). Returns ~20 users per page with cursor pagination. $0.0008 per call (~20 tweets).
- -GET /twitter/user/affiliates
- -Returns affiliated accounts of verified organizations
- -Cursor-based pagination (~20 users per page)
- -Includes full profile data for each affiliate
March 16, 2026
Search Users endpoint is live
Search for Twitter/X users by keyword, username, or topic. Equivalent to the "People" tab in Twitter search. $0.0008 per call (~20 tweets).
- -GET /twitter/user/search
- -Search by keyword, username, or topic
- -Returns up to 20 users per page with full profile data
- -Cursor-based pagination support
March 14, 2026
Blog is live
TwitterAPIs now has a blog. Read guides, tutorials, and comparisons to get the most out of the Twitter API.
- -SEO-optimized blog pages with structured data
- -Syntax-highlighted code snippets with copy button
February 22, 2026
Followers v2 & Following v2 endpoints
Two new endpoints. $0.0008 per call (~50 tweets).
- -GET /twitter/user/followers_v2
- -GET /twitter/user/following_v2
February 11, 2026
Payment integration is live
You can now purchase API credits directly from the dashboard via Stripe. Two credit packs are available, $10 and $50. No subscriptions, no recurring charges. Credits are added instantly and never expire.
- -Secure one-time payments powered by Stripe
- -$10 Starter pack (~10,000 API calls) and $50 Pro pack (~50,000 API calls)
- -Credits added to your account instantly after payment
- -Payment history visible in your dashboard under Credit History
February 9, 2026
TwitterAPIs public launch
TwitterAPIs launched publicly with the cheapest Twitter/X API pricing on the market. $0.0008 per call (~20 tweets) for every endpoint, and $0.50 in free credits for every new account.
- -21 API endpoints covering tweets, users, search, and lists
- -Pay-per-call pricing with no subscriptions or monthly fees
- -99.9% uptime SLA with sub-2-second response times
- -Full API documentation at docs.twitterapis.com
Next read
Continue exploring TwitterAPIs:
TwitterAPIs pricing
Endpoint-level costs and per-call totals.
Twitter API pricing comparison
Monthly economics and request-level cost side by side.
Twitter scraper API
Scrape tweets, profiles, and followers at $0.04 per 1,000.
TwitterAPIs MCP server
Wire the full Twitter API into Claude, Cursor, and Cline.