Introduction
As far as I know, the software used by Fediverse, a decentralized social networking site, makes information public due to its decentralized nature, and as a result, it's often possible to obtain feeds of the latest information via RSS.
However, the extent to which this is possible varies depending on the software's capabilities and features, and I was interested in the functionality of each piece of software, so I decided to write this article to research and summarize the state of RSS on Fediverse, including its URL structure.
This article is based on a pioneering article titled "Finding Fediverse Feeds" that appeared on the website Hyperborea: Kelson Vibber.
Stream Fediverse feeds to your RSS reader
URL Structure Table
| Software | Section | URL | type | Title | visible links | RSS Subscriptions from External Servers |
|---|---|---|---|---|---|---|
| Lemmy | Community | /feeds/c/{community}.xml?sort={sort} | RSS 2.0 | Yes | Yes | No |
| Lemmy | User | /feeds/u/{username}.xml?sort={sort} | RSS 2.0 | Yes | Yes | No |
| Lemmy | Local Timeline | /feeds/local.xml?sort={sort} | RSS 2.0 | Yes | Yes | No |
| Lemmy | All Timeline | /feeds/all.xml?sort={sort} | RSS 2.0 | Yes | Yes | No |
| Lemmy | Your front page | /feeds/front.xml/{jwt_token} | RSS 2.0 | Yes | No | - |
| Lemmy | Your inbox | /feeds/inbox.xml/{jwt_token} | RSS 2.0 | Yes | No | - |
| Lemmy | Your modlog | /feeds/modlog.xml/{jwt_token} | RSS 2.0 | Yes | No | - |
| PieFed | Community | /community/{community}/feed | RSS 2.0 | Yes | Yes | Yes |
| PieFed | User | /u/{username}/feed | RSS 2.0 | Yes | No | Yes |
| PieFed | Topic | /topic/{topic}.rss | RSS 2.0 | Yes | No | Uninvestigated |
| PieFed | Feeds | /f/{feeds}.rss | RSS 2.0? | Yes? | No | Uninvestigated |
| Mbin | Community | /rss?magazine={community} | RSS 2.0 | Yes | Yes | Yes |
| Mbin | User | /rss?user={username} | RSS 2.0 | Yes | Yes | Yes |
| Mbin | Tag | /rss?tag={tag} | RSS 2.0 | Yes | Yes | Yes |
| Plume | Blog | /~/{blog}/atom.xml | Atom | Yes | Yes | Details unknown |
| Plume | User | /~/{username}/atom.xml | Atom | Yes | Yes | Details unknown |
| WriteFreely | User | /{username}/feed/ | RSS 2.0 | Yes | No | Details unknown |
| WriteFreely | Reader | /read/feed/ | RSS 2.0 | Yes | No | Details unknown |
| Funkwhale | User | /api/v1/channels/{user}/rss | RSS2.0 | Yes | Yes | Details unknown |
| PeerTube | User | feeds/videos.xml?videoChannelId={channel} | RSS 2.0 | Yes | Yes | Yes |
| PeerTube | User-Podcast | /feeds/podcast/videos.xml?videoChannelId={channel} | RSS 2.0 | Yes | Yes | Yes |
| Bookwyrm | User | /user/{username}/rss | RSS 2.0 | Yes | Yes | Yes |
| Mastodon | User | /@{username}.rss | RSS 2.0 | No | No | No |
| Mastodon | Hashtag | /tags/{hashtag}.rss | RSS 2.0 | No | No | No |
| Mastodon | User-Hashtag | /@{username}/tagged/{hashtag}.rss | RSS 2.0 | No | No | No |
| Pleroma | User | /users/{username}/feed.atom | Atom | Yes | No | External accounts cannot be viewed |
| BlueSky | User | /profile/{did-placeholder}/rss | RSS 2.0 | No | No | External instance does not exist |
| Misskey | User | /@{username}.rss | RSS 2.0 | partially (example: "New note by UserName") | No | Yes |
| Misskey | User | /@{username}.atom | Atom 1.0 | partially (example: "New note by UserName") | No | Yes |
| Pixelfed | User | /users/{username}.atom | Atom | Yes | Yes | External accounts cannot be viewed |
| HackersPub | User | /@{username}/feed.xml | Atom | Yes | No | External accounts cannot be viewed |
| HackersPub | User Articles | /@{username}/feed.xml?articles | Atom | Yes | No | External accounts cannot be viewed |
| Hubzilla | Posts and Comments | /feed/{channel} | Atom | No | No | External accounts cannot be viewed |
| Hubzilla | Only Posts | /feed/{channel}?f=&top=1 | Atom | No | No | accounts are displayed in summary only |
| friendica | User | /feed/{username}/ | Atom | Yes | Yes | External accounts cannot be viewed |
| friendica | User Comments | /feed/{username}/comments | Atom | Yes | No | External accounts cannot be viewed |
| friendica | User Timeline | /feed/{username}/activity | Atom | Yes | No | External accounts cannot be viewed |
説明
Below are descriptions of the columns in the table above.
- Software
- The software you are using.
- Section
- Which feed for that software?
- URL
- The URL structure.
- Type
- The file type. This indicates whether it is RSS or Atom.
- Title
- Whether the post title is displayed in the RSS feed.
- Visible Links
- Whether the RSS link is visible on the instance.
- RSS Subscriptions from External Servers
- Whether you can subscribe to RSS feeds from users of external instances.
Feed Functionality Comparison
-
Software that only contains the user's RSS feed
-
Software that exists beyond user RSS feeds
- Lemmy
- Community
- User
- Local Timeline
- All Timeline
- Your front page
- Your inbox
- Your modlog
- PieFed
- Community
- User
- Topic
- Feeds
- Mbin
- Community
- User
- Tag
- Plume
- Blog
- User
- WriteFreely
- Blog
- User
- Mastodon
- User
- Hashtag
- User-Hashtag
- Hubzilla
- Posts and Comments
- Only Posts
- PeerTube
- User
- User Podcast
- HackersPub
- User
- User Article
- friendica
- User
- User Comments
- User Timeline
- Software without RSS
- Lemmy
Reference
-
Fediverse in general
-
Lemmy
-
Mastodon
-
Misskey
Sort on Lemmy
/feeds/c/{community}.xml?sort={sort}
The {sort} part of Lemmy in the RSS list above corresponds to the "URL" column in the table below.
example:
/feeds/c/{community}.xml?sort=New
| Type | Description | url |
|---|---|---|
| Active (default) | Calculates a rank based on the score and time of the latest comment, with decay over time | Active |
| Hot | Like active, but uses time when the post was published | Hot |
| Scaled | Like hot, but gives a boost to less active communities | Scaled |
| New | Shows most recent posts first | New |
| Old | Shows oldest posts first | Old |
| Most Comments | Shows posts with highest number of comments first | MostComments |
| New Comments | Bumps posts to the top when they are created or receive a new reply, analogous to the sorting of traditional forums | NewComments |
| Top Hour | Highest scoring posts during the last 1 hour | TopHour |
| Top Six Hours | Highest scoring posts during the last 6 hours | TopSixHour |
| Top Twelve Hours | Highest scoring posts during the last 12 hours | TopTwelveHour |
| Top Day | Highest scoring posts during the last 24 hours | TopDay |
| Top Week | Highest scoring posts during the last 7 days | TopWeek |
| Top Month | Highest scoring posts during the last 30 days | TopMonth |
| Top Three Months | Highest scoring posts during the last 3 months | TopThreeMonths |
| Top Six Months | Highest scoring posts during the last 6 months | TopSixMonths |
| Top Nine Months | Highest scoring posts during the last 9 months | TopNineMonths |
| Top Year | Highest scoring posts during the last 12 months | TopYear |
| Top All Time | Highest scoring posts of all time | TopAll |
Source: Votes and Ranking
Stream RSS feeds to Your Fediverse Feeds
A well-known method of distributing RSS feeds from the web to ActivityPub is software (server) called RSSParrot, which was created for that purpose.
In addition, in the Japanese-speaking world, there is a public Mastodon instance called the RSSフィードbot鯖, which is dedicated to RSS Bots and is also widely used.
Original article
FediverseのRSS事情 - URL構造の一覧など - hoageckoのブログ (Article in Japanese)
Fediverse Advent Calendar
This post is the 15th article of Fediverse (2) Advent Calendar 2025 - Adventar (Article in Japanese).
Your list doesn't look complete in regards to Mbin. For example, tags seem to have RSS feeds.
This is not a complaints forum
1y 3mon ago by lemmy.world/u/woelkchen in fediverseAI-assisted moderation in the fediverse is happening. Now what?
1d 9h ago by piefed.social/u/rimu in fediverse from join.piefed.socialBeware of lemmychan.org: it’s exactly what you’d expect.
11h 11m ago by lemmy.ml/u/davel in fediverse from lemmychan.orgFor those who have tried MBin, is it a good Lemmy alternative?
19h 22m ago by lemmy.world/u/MeowerMisfit817 in fediverseProof of AI-assisted political profiling by Unruffled @ lemmy.dbzer0.com
12h 31m ago by piefed.social/u/rimu in fediverse from s.faf-pb.xyzThe Button - An interactive Fediverse game
15h 20m ago by discuss.tchncs.de/u/Zedstrian in fediverse from thebutton.lemmy.zipLemmyvision 3 - Vote for your favourite songs!
23h 6m ago by jlai.lu/u/inlandempire in fediverse from jlai.luWhich instances have the most ban-happy moderators? Analysis inside
3d 14h ago by piefed.social/u/rimu in fediverseno meta may challenge (wip?)
3d 12h ago by piefed.social/u/pieland in fediverse from media.piefed.socialLemmy instance post visibility rankings
3d 18h ago by lemmy.dbzer0.com/u/Not_mikey in fediverse from lemmy.dbzer0.comFederation Has a European Legal Problem
3d 19h ago by piefed.social/u/wisdomchicken in fediverse from connectedplaces.onlineThe Seven Deadly Fediverse UX Sins: A Redemption Report Card - We Distribute
4d 10h ago by lemmy.world/u/deadsuperhero in fediverse from wedistribute.orgChristine Lemmer-Webber - Building a Humane Social Internet
6d 20h ago by cake.kobel.fyi/u/squirrel in fediverse from video.fedihost.coJulian Lam - Forums over Feeds: End the doomscroll
5d 5h ago by cake.kobel.fyi/u/squirrel in fediverse from video.fedihost.coCopyright and DMCA Best Practices for Fediverse Operators
5d 20h ago by lemmy.world/u/HailSeitan in fediverse from www.eff.orgThe Open Social Web Needs Section 230 to Survive
6d 7h ago by discuss.tchncs.de/u/schnurrito in fediverse from www.eff.orgFediverse Sustainability Survey
6d 17h ago by piefed.social/u/ozoned in fediverse from socialwebfoundation.orgDoes a pay‑what‑you‑want Gumroad model make sense in a decentralized ecosystem like the Fediverse?
6d 17m ago by lemmy.world/u/mietkiewski_dev in fediverseFedify 2.2.0: C2S outbox listeners, Tombstone support, SolidStart and Nuxt integrations, and three new tutorials
7d 8h ago by lemmy.ml/u/hongminhee in fediverse from github.comTake part in a study on AI Resistance
7d 18h ago by lemmy.ca/u/JTro in fediverseEvan Prodromou - Introducing the Fediverse
7d 21h ago by cake.kobel.fyi/u/squirrel in fediverse from video.fedihost.coAm I asking Too Much?
8d 13h ago by lemmy.world/u/CalvusRex in fediverse from offgridholdout.orgCan federating be modified so it's not dependent domain names?
8d 19h ago by ttrpg.network/u/xaviercast in fediverseHollo 0.8.0: Scalable workers, Mastodon 4.5 quote post API support, and smarter federation
8d 20h ago by lemmy.ml/u/hongminhee in fediverse from github.comWhen exactly does something count as part of the Fediverse?
9d 1h ago by sh.itjust.works/u/JupiterRowland in fediverseQuestions about Matrix Chat
10d 19h ago by sh.itjust.works/u/imaqtpie in fediverse from sh.itjust.worksFR#160 – Everyone Wants Servers And Nobody Wants Servers
11d 21h ago by piefed.social/u/wisdomchicken in fediverse from connectedplaces.onlineCall for Contribution: FediDay 2026
12d 6h ago by cake.kobel.fyi/u/squirrel in fediverse from ctalx.c-base.orgsmolfedi - A lightweight, no-JavaScript Fediverse client written in PHP by Adele at Codeberg
12d 13h ago by feddit.cl/u/skrlet13 in fediverse from codeberg.orgCopyright and DMCA Best Practices for Fediverse Operators
12d 18h ago by sh.itjust.works/u/SnoringEarthworm in fediverse from www.eff.orgIntroducing Threadirator - A Threadiverse Community Federator
12d 19h ago by quokk.au/u/Quokka in fediverse from federation.quokk.auDoes anyone know of articles discussing PieFed?
12d 21h ago by lemmy.ml/u/Pacrat173 in fediverseIbis 0.3.2 - Wikipedia Import, UI Translation and more
13d 1h ago by lemmy.ml/u/nutomic in fediverseCommands/formatting for posting to Lemmy from Mastodon
13d 20h ago by hostux.social/users/Fu in fediverseMakerTube is open for public registrations!
14d 19h ago by piefed.social/u/mesamunefire in fediverse from media.piefed.socialMastodon says its flagship server was hit by a DDoS attack
14d 19h ago by piefed.social/u/nemeski in fediverse from techcrunch.comIs lemmy.sdf.org coming back?
15d 26m ago by startrek.website/u/IcedRaktajino in fediverse from startrek.websiteThe Small Website Discoverability Crisis
16d 11h ago by discuss.tchncs.de/u/gandalf_der_12te in fediverse from www.marginalia.nuUnfinishedProjects — Open-licensed projects - a collective contribution
16d 13h ago by piefed.zip/u/UnfinishedProjects in fediverse from unfinishedprojects.nethexbear.net has raised over $1500 for Palestine over the past few weeks
16d 22h ago by reddthat.com/u/Riverside in fediverse from hexbear.netHosting own instance
17d 3h ago by lemmy.world/u/Kkk2237pl in fediverseHow could/would/should the Fediverse do age verification if required in the EU?
18d 20h ago by lemmy.world/u/General_Effort in fediverseWelcome to the Fediverse where mods and admins alike will ban you for no reason whatsoever
19d 12h ago by multiverse.soulism.net/u/Additionalisland in fediverse from multiverse.soulism.netFR#159 – Sovereign Tech Agency funds Mastodon
19d 21h ago by piefed.social/u/wisdomchicken in fediverse from connectedplaces.onlineMastodon will get end-to-end encryption for private messages thanks to Sovereign Tech Agency
20d 13h ago by mander.xyz/u/Deep in fediverse from blog.joinmastodon.orgLooks like Lemmy-Federate is down, has been down for over a day.
21d 2h ago by piefed.social/u/Skavau in fediverseI am NOT the creator / associated with this project in ANY way. I just stumbled upon this, in the Peertube subreddit, and wanted to potentially share it here.
21d 17h ago by lemmy.world/u/Teknevra in fediverse


























