Is there an unofficial Twitter API?
Last updated July 12, 2026
An unofficial Twitter API is a third-party service that returns X data without going through X's own developer platform. TwitterAPIs is a hosted example: 47 endpoints across search, tweets, users, and the follower graph, priced at $0.0008 per call, about $0.04 per 1,000 tweets. There is no X developer account, no OAuth, and a $0.50 signup credit to try it with no card.
Every rate here is the pricing TwitterAPIs publishes, $0.0008 per call and $0.04 per 1,000 tweets (source: twitterapis.com/pricing).
What counts as an unofficial Twitter API?
An unofficial Twitter API is any service that returns Twitter or X data without being X's own developer product. In practice these fall into two groups: hosted reseller APIs that return structured JSON for a per-call fee, and open-source scraping libraries that read the public web. The reseller approach gives you a stable contract and support; the scraper approach is free but brittle. TwitterAPIs is the hosted reseller kind, with 47 documented endpoints reachable by a single bearer token.
What data does an unofficial API return?
The same public surface you would read from X itself: tweet search, a user's profile and timeline, followers and following, likes, mentions, threads, replies, retweeters, and list members. TwitterAPIs covers 33 read endpoints and 14 write endpoints, and every response is parsed JSON rather than raw HTML. Write actions such as posting, liking, retweeting, and following are available once an account session is linked, so the surface is not read-only.
How much does an unofficial Twitter API cost?
Hosted resellers price per call. On TwitterAPIs the standard rate is $0.0008 per call, and because a call returns about 20 tweets that is $0.04 per 1,000 tweets. twitterapi.io is around $0.15 per 1,000 and Apify actors run $0.25 to $0.40 per 1,000. Scraping libraries are free in dollars but cost engineering time when they break. There is no monthly minimum on the pay-per-call model, so small jobs stay cheap.
Is using an unofficial API reliable?
Reliability depends on the type. A hosted reseller returns a consistent JSON shape and absorbs the upstream churn for you, so your code does not change when X does. A raw scraper reads public HTML and breaks on layout or rate-limit changes. If a project needs to keep running, the hosted per-call option at $0.04 per 1,000 tweets trades a small cost for a stable contract and removes the maintenance you would otherwise carry.
How do you start with an unofficial API?
With TwitterAPIs you sign up, receive a bearer token, and call the endpoint; there is no X developer account and no approval. A $0.50 credit lands on every new account with no card, roughly 625 calls or 12,500 tweets, so you can confirm the data and shape before spending. First call to a live endpoint takes under 2 minutes, which is faster than the official developer-account application path.
Unofficial Twitter API options, compared
| Option | Type | Cost per 1,000 tweets | Structured JSON | Breaks on X changes |
|---|---|---|---|---|
| TwitterAPIs | Hosted reseller | $0.04 | Yes | No, absorbed for you |
| twitterapi.io | Hosted reseller | $0.15 | Yes | No |
| snscrape / twikit | Open-source scraper | $0 | No, raw parse | Yes |
Twitter is shutting off free access to the Twitter API.
Questions and answers
- What is an unofficial Twitter API?
- A third-party service that returns Twitter or X data without X's own developer platform. It is usually a hosted reseller API that returns JSON for a per-call fee, or an open-source scraper. TwitterAPIs is the hosted kind, with 47 endpoints on one bearer token.
- Is an unofficial Twitter API legal to use?
- Hosted resellers return public data over a documented API and are widely used for research, monitoring, and product features. As with any data source, you are responsible for how you use the data. TwitterAPIs returns the public read surface plus opt-in write actions on a linked account.
- How much cheaper is it than the official X API?
- At $0.04 per 1,000 tweets, TwitterAPIs is roughly 125 to 250 times cheaper than the official X API's $5 to $10 per 1,000 for equivalent reads, and there is no developer-account application or monthly plan to commit to.
- Does an unofficial API let me post tweets?
- TwitterAPIs does. Alongside 33 read endpoints it has 14 write endpoints for posting, replying, liking, retweeting, following, and sending DMs, which act as a linked X account. Tweet creation is $0.0016 per call; simple writes are $0.0008.
- Will an unofficial API keep working when X changes?
- A hosted reseller like TwitterAPIs absorbs upstream changes and keeps the JSON shape stable, so your code does not break. Raw scraping libraries read public HTML and do break on layout or rate-limit changes, which is the main reliability trade-off.
Keep reading
Start with $0.50 in free credits
No credit card. Roughly 12,500 tweets to test every endpoint.