RSS by platform

How to Get the RSS Feed for Reddit

Subreddits, user pages, and comment threads expose RSS with a .rss suffix.

Quick answer

Does Reddit have RSS?

Does Reddit have RSS?
Yes. Subreddits, user pages, and comment threads expose RSS with a .rss suffix.
Feed URL format
https://www.reddit.com/r/[subreddit]/.rss
Key limitation
Reddit blocks automated requests from cloud hosts including Vercel and AWS

Context

What this means for Reddit

Reddit has supported RSS on nearly every page type since launch. The URL is always the page URL plus a .rss suffix. Reddit aggressively rate-limits and blocks datacenter IPs, including Vercel, so previews often fail even when the URL itself is valid. The generated feed still works from a WordPress host with sensible polling intervals.

Feed URL format
https://www.reddit.com/r/[subreddit]/.rss
Working example
https://www.reddit.com/r/wordpress/.rss

Supported patterns

  • Subreddit feeds (/r/[subreddit]/.rss)
  • Sorted subreddit views (/new/.rss, /top/.rss, /hot/.rss, /rising/.rss)
  • Subreddit search (/r/[subreddit]/search.rss?q=[query]&restrict_sr=1)
  • User submissions (/user/[name]/submitted/.rss) and comments (/user/[name]/comments/.rss)
  • Multireddits (/user/[owner]/m/[multi]/.rss)
  • Front-page sitewide (/.rss) and domain-scoped (/domain/[host]/.rss) feeds

Limitations

  • Reddit blocks automated requests from cloud hosts including Vercel and AWS
  • High-volume subreddits need keyword or score filtering before import
  • NSFW content requires a logged-in session and is not available through public RSS
  • Comment trees are not nested in the feed. Only top-level item data is included

RSS finder

Find and preview a Reddit feed

Test a Reddit URL here to get the same feed analysis, import verdict, and live Aggregator-style preview as the main Feed Finder.

Gotchas

Common mistakes

  • Watch for this: Dropping the trailing slash. /r/wordpress.rss returns 404, while the working pattern is /r/wordpress/.rss
  • Watch for this: Using old.reddit.com in production feeds, the URL works but Reddit may redirect or change the behavior
  • Watch for this: Treating every subreddit post as a content candidate, most subreddits are discussion-heavy and not suitable for automated editorial imports

Examples

Try real Reddit feed patterns

Subreddit (default sort)

Input URL

https://www.reddit.com/r/wordpress/

Expected feed

https://www.reddit.com/r/wordpress/.rssTest in finder

Subreddit sorted by new

Input URL

https://www.reddit.com/r/wordpress/new/

Expected feed

https://www.reddit.com/r/wordpress/new/.rssTest in finder

Subreddit search

Input URL

https://www.reddit.com/r/wordpress/search/?q=plugin&restrict_sr=1

Expected feed

https://www.reddit.com/r/wordpress/search.rss?q=plugin&restrict_sr=1Test in finder

User submissions

Input URL

https://www.reddit.com/user/spez/submitted/

Expected feed

https://www.reddit.com/user/spez/submitted/.rssTest in finder

Domain-scoped feed (links to github.com only)

Input URL

https://www.reddit.com/domain/github.com/

Expected feed

https://www.reddit.com/domain/github.com/.rssTest in finder

Get this into WordPress

Import Reddit feeds with Aggregator

Once you have a working Reddit feed URL, Aggregator handles the rest, importing as posts, rendering as a display, or filtering before it publishes.

  1. 1
    Copy the feed URL

    Grab the URL from the finder above or the examples list.

  2. 2
    Add it as a source in Aggregator

    Paste into Add New Feed Source inside WordPress.

  3. 3
    Choose display, import, and filter rules

    Render as a list, import as posts, or filter by keyword before anything goes live.

See how to import Reddit feeds with Aggregator

FAQ

Reddit RSS questions

What is the RSS URL for a subreddit?

Add .rss after the subreddit URL, for example https://www.reddit.com/r/wordpress/.rss. The trailing slash before .rss is required.

Why does Reddit preview sometimes fail?

Reddit blocks automated requests from datacenter IP ranges. The subreddit .rss URL is still the correct format. It usually works from a WordPress host with a reasonable polling interval.

Can I get an RSS feed for a user's Reddit comments?

Yes. Use https://www.reddit.com/user/[username]/comments/.rss. Submissions use /submitted/.rss. Both require the user's profile to be public.

Does Reddit RSS work for private or quarantined subreddits?

No. Private and quarantined subreddits require authentication. Public RSS only works for fully public communities.

Is there an RSS feed for Reddit saved posts or a custom feed?

Custom feeds (multireddits) expose RSS at /user/[name]/m/[multi]/.rss. Saved posts are private and not available through RSS.