NoobClaw logo NoobClaw

X API Free Tier Limits in 2026: There Isn't One Anymore

2026-09-07 · 6 min read · By Marcus Lin · NoobClaw Blog
TL;DR
  • X's own documentation now describes the API as pay-per-usage: buy credits upfront, deducted as you use it, no subscriptions.
  • The free tier — historically 500 posts and 100 reads per month — closed to new developers in February 2026.
  • Legacy subscribers on old tiers are grandfathered; new developers cannot sign up for them at all.
  • If your posting tool asks you to connect an X developer app, that route now has a per-call price attached to it.

You went looking for the X API free tier limits and found a dozen articles quoting 500 posts a month. That number was real. It is also no longer the answer to your question, because as of February 2026 there is no free tier for new developers at all.

X's current developer documentation describes the model in a single line: "pay-per-usage pricing" with "No subscriptions—pay only for what you use." You purchase credits upfront and they are deducted as you call the API.

What actually changed

The shift is bigger than a price adjustment, because it removes an entire category of user.

BeforeNow (new developers)
Free tier500 posts / 100 reads per month, one app environmentClosed to new signups
Basic / Pro tiersMonthly subscriptionsClosed to new signups; existing subscribers grandfathered
Default routeStart free, upgrade if neededBuy credits, spend per call

The practical consequence: there is no longer a zero-cost way to build against X. The hobby project, the personal cross-poster, the "let me test whether this works before I commit" path — all of it now starts at a payment screen.

A free tier is not just a price. It is the on-ramp. Removing it does not make the API more expensive; it makes a whole class of tool stop existing.
X API Free Tier Limits · from a free tier to credits deducted per call
Credits deducted per call. The free on-ramp is gone, and with it a whole category of small tool.

Why this matters even if you never touch an API

Most people reading this do not write code. You still feel this change, in three places.

1. Your scheduling tool's costs are now variable. Any tool that posts to X on your behalf goes through this API. When the underlying cost model moves from a flat subscription to per-call credits, that cost lands somewhere — in the tool's pricing, in its posting limits, or in features quietly disappearing. Watch for X support becoming a higher tier than it used to be.

2. Small tools will drop X. Indie schedulers and open-source projects that could absorb a free tier cannot absorb metered credits across every user. Expect the list of tools that support X to shrink and the ones that remain to be the larger, paid ones. If you rely on a small tool for X specifically, that is now a dependency worth watching.

3. "Free X automation" is now a warning sign. If the official route costs money per call, anything advertising unlimited free X posting is not using the official route. It is using scraping or credential-based access, which carries a very different risk profile for your account. This is the same reasoning as in free TikTok bots versus human-paced automation.

The three routes left, honestly compared

If you need to post to X regularly, you have three options and they are genuinely different, not marketing variants of each other.

That third option is the one most comparison articles omit entirely, because it does not fit the "which SaaS should I buy" frame. It is also structurally different in a way worth understanding: an API integration is a business relationship with X that can be repriced or revoked, while a browser session is your own account doing what accounts do. The trade-off is that browser-based operation has to be done carefully — a fixed fingerprint per account, its own IP, human-paced timing rather than a synchronized cron tick — or it becomes obvious in a different way.

That is the design NoobClaw uses: each account runs in a local fingerprint browser profile you log into yourself, with per-account content generated from that account's own niche and persona, on randomized intervals. No developer app, no credentials handed to a third party, and no exposure to what an API pricing page does next quarter. It is not a way around any limit — it is a different place to stand relative to one. For the multi-account version of the same problem see multi-account browser setups.

X API Free Tier Limits · three routes: pay per call, inherit a tool
Three routes, genuinely different. Only one of them is unaffected by the next pricing page.

What to check before you rely on any X tool now

Given that the underlying cost model moved, the tools sitting on top of it are going to move too — some by raising prices, some by cutting features, some by quietly dropping X. Four things worth checking on any tool you currently depend on for X:

  1. Which tier includes X? If X support has migrated up a pricing tier since you signed up, that is the cost being passed through and it usually happens at renewal rather than with an announcement.
  2. Is there a posts-per-month cap you did not have before? Per-call pricing pushes vendors toward metering their own users. A cap that appears in the fine print is the most common form this takes.
  3. What happens when their credits run out? Ask, specifically. Some tools queue and retry, some fail silently. A silent failure on a scheduled post is worse than an error, because you find out days later.
  4. Do they support anything other than the API route? Tools that can also operate a real browser session have an option when API economics change. Tools that cannot are entirely exposed to the next pricing page.

None of this is a reason to panic-migrate. It is a reason to know which of your platforms sits on a metered dependency and which does not, because that determines what breaks when the price moves again. The broader version of that question — what you are actually depending on when you hand a platform to a third party — is covered in automating Reddit without bans, where the API-versus-session distinction plays out with a very different risk profile.

FAQ

Is the X API still free in 2026?

Not for new developers. X's documentation describes a pay-per-usage credit model with no subscriptions. The old free tier (500 posts and 100 reads per month) closed to new signups in February 2026; existing legacy subscribers on Basic, Pro or Enterprise are grandfathered.

How much does the X API cost now?

It is credit-based rather than tiered — you buy credits upfront and they are deducted as you call the API. Because the rate depends on which endpoints you use and how often, there is no single monthly figure. Check the current pricing page in the developer console before budgeting.

Can I still schedule X posts without paying for the API?

Yes, in two ways. X's own composer has scheduling built in for posts you write yourself, at no cost. And tools that operate a real logged-in browser session rather than the API are not affected by developer pricing at all — though those need to be run carefully, with per-account isolation and human-paced timing.

Sources: X Developer Platform introduction documentation (docs.x.com), retrieved 2026-09-07, which states the pay-per-usage credit model verbatim; February 2026 free-tier closure and historical 500/100 figures per developer community and industry reporting. Pricing pages change — verify in the developer console before committing.