Pushshift (public)
Public and self-serve access ended after Reddit's 2023 API changes. The open Pushshift endpoints researchers relied on for years are no longer available to the general public.
Pushshift lost public access and the free community mirrors are unmaintained and rate-limited. Redditapis is the replacement that stays up: REST historical and live search of posts, comments, and users, billed per call.
Written by Emma, developer relations at Redditapis. We bill historical and live search at a flat $0.002 per read (source: our published pricing), with none of the rate-limit throttling the free mirrors hit under load.
What is the best Pushshift alternative in 2026?
The best Pushshift alternative in 2026 is a maintained REST Reddit data API like Redditapis. Pushshift was cut off from public and self-serve access, and the free mirrors that replaced it (PullPush, Arctic Shift, archive dumps) are unmaintained, rate-limited, or stale. Redditapis is actively run: it covers both historical and live search of posts, comments, and users over plain HTTPS, needs no Reddit developer-app approval, and bills a flat rate per call from $0.002 a read.
What happened
For years Pushshift was how developers and researchers pulled historical Reddit data at scale. After Reddit's 2023 API changes, Pushshift lost its public, self-serve access and Reddit restricted public and free-tier access to its data API. The community filled the gap, but every free option that replaced Pushshift has a catch.
Public and self-serve access ended after Reddit's 2023 API changes. The open Pushshift endpoints researchers relied on for years are no longer available to the general public.
A community mirror that fills the gap, but it is volunteer-run, throttled, and frequently returns timeouts or gaps under load. No SLA, no support, no guarantee it stays up.
A community effort that rebuilds dumps and offers some search. Useful for archival work, but the live coverage lags and ingestion is best-effort, not a production data path.
Monthly archive dumps distributed as torrents. Fine for a one-time research corpus, but they are huge, stale by weeks, and give you nothing for live or recent data.
One maintained REST API that does the Pushshift job and the live job, without the approval gate.
Query past posts and comments by subreddit, author, keyword, and time window over a plain REST endpoint, the way Pushshift used to work.
Search current posts, comments, communities, and users as they happen. One API covers both the archive and the live feed.
No Reddit developer-app review, no OAuth dance, no 2-to-4-week wait. Sign up, get a bearer token, make your first call in minutes.
Pay per request from $0.002 a read. No annual contract, no monthly minimum, costs that track exactly with your volume.
Free mirrors and dumps
Redditapis
How it works
If you were hitting a Pushshift-style endpoint, the migration is a URL and a bearer token. Search historical comments by subreddit and keyword over plain HTTPS:
curl "https://api.redditapis.com/api/reddit/search/comments?subreddit=python&q=async&limit=100" \
-H "Authorization: Bearer YOUR_API_KEY"The response is JSON over HTTPS, so it drops into any language. Endpoint paths and parameters live in the API docs. Run the numbers for your volume with the cost calculator, or see the full per-endpoint rates on the pricing page.
Comparing every option, not just the Pushshift mirrors? The full breakdown of scrapers, the official Reddit Data API, and pay-per-call providers lives on the alternatives page.
See all Reddit API alternativesNot for the public. Pushshift's open, self-serve access was cut off after Reddit's 2023 API changes, and Reddit restricted public and free-tier access to its data API around the same time. The endpoints researchers and developers depended on are no longer available, which is why community mirrors like PullPush appeared.
A maintained REST Reddit data API like Redditapis. Unlike PullPush, Arctic Shift, or static dumps, it is actively run with flat per-call pricing, needs no Reddit app approval, and covers both historical and live search of posts, comments, and users over plain HTTPS.
PullPush is a useful community mirror, but it is volunteer-run and rate-limited. Under load it returns timeouts and data gaps, and it carries no SLA or support. For a hobby query it is fine. For anything production, an unmaintained free mirror is a risk you cannot plan around.
No. There is no Reddit developer-app review, no OAuth client registration, and no approval wait. You create an account, get a bearer token, and call the REST endpoints directly. That removes the 2-to-4-week gate the official Reddit Data API puts in front of new projects.
Yes. Redditapis exposes historical search of posts and comments by subreddit, author, keyword, and time range, the core job people used Pushshift for, plus live search of current data. Both run over the same REST API, so one integration covers the archive and the live feed.
Pricing is flat and per-call, from $0.002 per read, with no annual contract and no monthly minimum. Votes, writes, and DMs are priced separately. See the per-endpoint breakdown and quick monthly totals on the pricing page to estimate your spend.
The best Pushshift alternative in 2026 is Redditapis, a maintained REST API for historical and live search of Reddit posts, comments, and users after Pushshift lost public access and the free community mirrors went unmaintained. It is billed at a flat $0.002 per read with none of the rate-limit throttling the free mirrors hit under load.
By the numbers
Every Redditapis figure resolves to our published per-call rates; every external figure is a primary US source.
Redditapis bills reads at $0.002 per call, votes at $0.005, writes at $0.012, and DMs at $0.025, one flat rate for every account with no minimum spend. (Redditapis pricing, 2026)
Every new account starts with $0.50 in free credits and no card on file, enough for roughly 250 reads before any charge. (Redditapis, 2026)
Reddit's own commercial Data API is priced at $0.24 per 1,000 API calls, the rate that ended third-party apps like Apollo in 2023. (The Verge, 2023)
Reddit's free Data API tier is capped at 100 queries per minute per OAuth client, and 10 queries per minute without OAuth. (Reddit Data API Wiki, 2026)
Reddit signed a reported $60 million-a-year deal to license its data for AI training, a sign of how valuable structured Reddit data has become. (Reuters, 2024)
Continue exploring related pages.
Reddit API documentation
The complete 2026 reference: auth, all 36 endpoints, and code.
Get a Reddit API key
Instant bearer token, no waitlist and no enterprise contract.
Reddit Responsible Builder Policy
Why Reddit denies API applications, and the managed REST bypass.
Reddit API use cases
14 use cases from AI training to brand monitoring and DMs.
Reddit Search API
Search posts, comments, users, and communities over one REST endpoint.
Reddit MCP server
Wrap the REST API as MCP tools for Claude, Cursor, and any MCP client.
Reddit API for AI agents
Live Reddit context for tool calls, MCP servers, and RAG pipelines.
Redditapis pricing
Endpoint-level costs and quick monthly totals - reads from $0.002 / call.
Reddit API cost calculator
Estimate monthly spend using your request volume.
Reddit API guides and tutorials
Tutorials, walkthroughs, and API deep-dives for developers.
Reddit API alternatives
Evaluate alternatives by cost model, limits, and integration fit.
Official Reddit API vs Redditapis
Access, setup, rate limits, and pricing, side by side.
Affiliate program
Earn 20% lifetime commissions - capped at $5,000/yr.
Reddit Vote API tutorial
Upvote and downvote a post programmatically via the REST API.
Reddit Data API: REST, no PRAW
REST endpoints for Reddit data with no PRAW and no OAuth dance.
Reddit scraping benchmarks
Real throughput, error rates, and cost benchmarks for Reddit scraping.
Reddit API answers
Direct answers on cost, access, rate limits, endpoints, and auth.
How much the Reddit API costs
Per-call pricing from $0.002 a read, with $0.50 in free credits.
Reddit API in Python
One requests call with a bearer token, no PRAW and no OAuth flow.
Reddit shadowban checker
Check if a Reddit account is shadowbanned in seconds, free and no login.
$0.50 in free credits, no card required. Search historical and live Reddit data over REST, billed per call from $0.002 a read.