ActivityPub

{{Short description|Decentralized social networking protocol}}

{{Infobox networking protocol

| title = ActivityPub

| abbreviation = AP

| logo = ActivityPub-logo.svg

| logo size = 300px

| image = ActivityPub-tutorial-image.svg|caption=An infographic of the core functionality of ActivityPub

| image alt = The image depicts a infographic of the basic functionality of ActivityPub. It shows a person (known as an Actor in ActivityPub terminology) reading incoming messages ("activities") from an inbox, which receives messages from other Actors (depicted as a cloud labeled "REST OF THE WORLD") via federation. The Actor also sends messages to their outbox, which the rest of the world receives via federation.

| developer = World Wide Web Consortium and {{Plain list|

}}

| date = {{Start date and age|2018|01|23}}

| purpose = Decentralized social networking

| based on = ActivityStreams, JSON-LD

| influenced = AT Protocol{{Cite web |title=FAQ |work=AT Protocol |url=https://atproto.com/guides/faq#why-not-use-activitypub |access-date=2024-06-20}}

| website = {{Official URL}}

}}

ActivityPub is a protocol and open standard for decentralized social networking. It provides a client-to-server (C2S) API for creating and modifying content, as well as a federated server-to-server (S2S) protocol for delivering notifications and content to other servers.{{Cite web |title=W3C Recommendation 23 January 2018 |url=https://www.w3.org/TR/2018/REC-activitypub-20180123/}} ActivityPub has become the main standard used in the fediverse, a popular network used for social networking that consists of software such as Mastodon, Pixelfed and PeerTube.{{Cite web |last=Pierce |first=David |date=2024-02-07 |title=The fediverse, explained |url=https://www.theverge.com/24063290/fediverse-explained-activitypub-social-media-open-protocol |access-date=2024-06-20 |website=The Verge |language=en}}

ActivityPub is considered to be an update to the ActivityPump protocol used in pump.io, and the official W3C repository for ActivityPub is identified as a fork of ActivityPump.{{Citation |title=w3c/activitypub |date=2024-06-20 |url=https://github.com/w3c/activitypub |access-date=2024-06-22 |publisher=World Wide Web Consortium}}{{Cite web |date=29 May 2016 |title=Sandstorm and the Social Web |url=https://zenhack.net/2016/05/29/sandstorm-and-the-social-web.html |url-status=dead |archive-url=https://web.archive.org/web/20201030010607/https://zenhack.net/2016/05/29/sandstorm-and-the-social-web.html |archive-date=30 October 2020 |access-date=23 September 2017 |website=zenhack.net}} The creation of a new standard for decentralized social networking was prompted by the complexity of OStatus, the most commonly used protocol at the time. OStatus was built using a multitude of technologies (such as Atom, Salmon, WebSub and WebFinger), a product of the infrastructure used in GNU social (the originator and largest user of the OStatus protocol), which made it difficult to implement the protocol into new software. OStatus was also only designed to work with microblogging services, with little flexibility to the types of data that it could hold.

The standard was first published by the World Wide Web Consortium (W3C) as a W3C Recommendation in January 2018 by the Social Web Working Group (SocialWG), a working group chartered to build the protocols and vocabularies needed to create a standard for social functionality.{{Cite web |title=Social Web Working Group |url=https://www.w3.org/groups/wg/social/ |access-date=2024-06-23 |website=W3C |language=en}} Shortly after, further development was moved to the Social Web Community Group (SocialCG), the successor to the SocialWG.

Design

ActivityPub uses the ActivityStreams 2.0 format for building its content, which itself uses JSON-LD. The three main data types used in ActivityPub are Objects, Activities and Actors. Objects are the most common data type, and can be images, videos, or more abstract items such as locations or events. Activities are actions that create and modify objects, for example a {{code|Create}} activity creates an object. Actors are representative of an individual, a group, an application or a service, and are the owners of objects.

Every actor type contains an inbox and outbox stream, which sends and receives activities for a user. In order to publish data (for example liking an article), a user creates an activity that declares that they liked an Article object and publishes it to their outbox, where it is then delivered by the ActivityPub server via a POST request to the inboxes listed in the activity's {{code|to}}, {{code|bto}}, {{code|cc}} and {{code|bcc}} fields. The receiving servers then account for the newly received activity and update the article by adding the like action to it.

=Example data=

An example actor object that represents a user account:{{Cite web |date=January 23, 2018 |title=ActivityPub Specification |url=https://www.w3.org/TR/activitypub/#client-addressing |access-date=June 22, 2024 |website=W3C}}

{

"@context": ["https://www.w3.org/ns/activitystreams",

{"@language": "ja"}],

"type": "Person",

"id": "https://kenzoishii.example.com/",

"following": "https://kenzoishii.example.com/following.json",

"followers": "https://kenzoishii.example.com/followers.json",

"liked": "https://kenzoishii.example.com/liked.json",

"inbox": "https://kenzoishii.example.com/inbox.json",

"outbox": "https://kenzoishii.example.com/feed.json",

"preferredUsername": "kenzoishii",

"name": "石井健蔵",

"summary": "この方はただの例です",

"icon": [

"https://kenzoishii.example.com/image/165987aklre4"

]

}

An example activity that likes an article object:

{

"@context": ["https://www.w3.org/ns/activitystreams",

{"@language": "en"}],

"type": "Like",

"actor": "https://dustycloud.org/christine/",

"summary": "Christine liked 'Minimal ActivityPub update client'",

"object": "https://rhiaro.co.uk/2016/05/minimal-activitypub",

"to": ["https://rhiaro.co.uk/#amy",

"https://dustycloud.org/followers",

"https://rhiaro.co.uk/followers/"],

"cc": "https://e14n.com/evan"

}

An example article object:

{

"@context": ["https://www.w3.org/ns/activitystreams",

{"@language": "en-GB"}],

"id": "https://rhiaro.co.uk/2016/05/minimal-activitypub",

"type": "Article",

"name": "Minimal ActivityPub update client",

"content": "Today I finished morph, a client for posting ActivityStreams2...",

"attributedTo": "https://rhiaro.co.uk/#amy",

"to": "https://rhiaro.co.uk/followers/",

"cc": "https://e14n.com/evan"

}

Project status

The SocialCG previously organized a yearly free conference called ActivityPub Conf about the future of ActivityPub.{{Cite web |title=ActivityPub Conf 2019 |url=https://redaktor.me/apconf/}}{{Cite web |title=ActivityPub Conf 2020 |url=https://conf.activitypub.rocks/ |url-status=dead |archive-url=https://web.archive.org/web/20210602161023/https://conf.activitypub.rocks/ |archive-date=2021-06-02 |access-date=2020-08-01}} Triages are held regularly to review issues pertaining to the ActivityPub and ActivityStreams 2.0 specifications as part of the SocialCG.{{Cite web |title=W3C Social Web Incubator Community Group Mailing List |url=https://www.w3.org/Search/Mail/Public/search?type-index=public-swicg&index-type=t&keywords=issue+triage&search=Search |access-date=March 18, 2024}}

In 2023, Germany's Sovereign Tech Fund donated €152,000 to socialweb.coop with the goal of building a new suite for testing various ActivityPub implementations and their compliance with the specification.{{Cite web |title=ActivityPub Test Suite |url=https://www.sovereigntechfund.de/tech/activitypub-test-suite |access-date=2024-05-26 |website=Sovereign Tech Fund |language=en}}

=Adoption=

{{Further|Fediverse#Adoption}}

The initial wave of adoption for ActivityPub (circa 2016-2018) came from software that was already using OStatus as their federation protocol, such as Mastodon, GNU social and Pleroma.{{Cite web |date=2018-02-10 |title=Pleroma Encyclical: ActivityPub |url=https://blog.soykaf.com/post/pleroma-encyclical-activity-pub/ |access-date=2024-06-23 |website=blog.soykaf.com |language=en-US}} Following the acquisition of Twitter by Elon Musk in 2022, many groups of users that were critical of the acquisition migrated to Mastodon, bringing new attention to the ActivityPub protocol with it.{{Cite web |last=MacManus |first=Richard |date=2022-11-15 |title=Devs Are Excited by ActivityPub, Open Protocol for Mastodon |url=https://thenewstack.io/devs-are-excited-by-activitypub-open-protocol-for-mastodon/ |access-date=2024-06-23 |website=The New Stack |language=en-US}} Various major social media platforms and corporations have since pledged to implement ActivityPub support, including Tumblr,{{Cite web |last=Perez |first=Sarah |date=2022-11-21 |title=Tumblr to add support for ActivityPub, the social protocol powering Mastodon and other apps |url=https://techcrunch.com/2022/11/21/tumblr-to-add-support-for-activitypub-the-social-protocol-powering-mastodon-and-other-apps/ |access-date=2024-06-23 |website=TechCrunch |language=en-US}} Flipboard{{Cite web |last=McCue |first=Mike |date=2023-12-18 |title=Flipboard Begins to Federate |url=https://about.flipboard.com/inside-flipboard/flipboard-begins-to-federate/ |access-date=2024-06-23 |website=Flipboard |language=en-US}} and Meta Platforms' Threads.{{Cite web |last=Guinness |first=Harry |date=2023-07-12 |title=How ActivityPub is setting the stage to weave all your social media feeds together |url=https://www.popsci.com/technology/activitypub-fediverse/ |access-date=2024-06-23 |website=Popular Science |language=en-US}}

Criticism

=Accidental denial-of-service attacks=

Poorly optimized ActivityPub implementations can cause unintentional distributed denial-of-service (DDOS) attacks on other websites and servers, due to the decentralized nature of the network.{{Citation needed|date=June 2024|reason=Add citations from more social networks, not just Mastodon.}} An example would be Mastodon's implementation of OpenGraph link previews, wherein every instance that receives a post that contains a link with OpenGraph metadata will download the associated data, such as a thumbnail, in a very short timeframe, which can slow down or crash servers as a result of the sudden burst of requests.{{Cite web |date=2024-05-01 |title=Please Don't Share Our Links on Mastodon: Here's Why! |url=https://news.itsfoss.com/mastodon-link-problem/ |access-date=2024-06-18 |website=It's FOSS News |language=en}}{{Cite web |last=Balkan |first=Aral |date=2022-11-09 |title=Is the fediverse about to get Fryed? (Or, 'Why every toot is also a potential denial of service attack') |url=https://ar.al/2022/11/09/is-the-fediverse-about-to-get-fryed-or-why-every-toot-is-also-a-potential-denial-of-service-attack/ |access-date=2024-06-18 |website=ar.al |language=en}}

=Account migration=

ActivityPub has been criticized for not natively supporting moving accounts from one server to another, forcing implementations to build their own solutions.{{Cite web |title=FAQ {{!}} AT Protocol |url=https://atproto.com/guides/faq#why-not-use-activitypub |access-date=2024-06-20 |website=atproto.com}} While there has been work on building a standardized system for migrating accounts using the Move activity via the Fediverse Enhancement Proposal organization, the current proposal only allows for basic follower migration, with all other data remaining linked to the original account.{{Cite web |last=fediverse |title=FEP-7628 |url=https://codeberg.org//fediverse/fep/src/branch/main/fep/7628/fep-7628.md |access-date=2024-06-20 |website=Codeberg.org |language=en-US}}

=Missing content and data=

ActivityPub implementations have been criticized for missing replies and parts of reply threads from remote posts, and presenting outdated statistics (e.g. likes and reposts) about remote posts.{{Cite web |last=Wave |first=Setsune |date=2023-12-17 |title=This is a serious problem the fediverse has... |url=https://furries.club/@Setsune/111596877006547564 |access-date=2024-06-18 |website=Furries.club |language=en}}{{Cite web |last=Armando |first=Armando |date=2024-06-19 |title=I think one of the things that most annoy newcomers to the #Fediverse is... |url=https://fedia.social/notes/9uoxk3dsm6a3w1vx |access-date=2024-06-19 |website=Fedia.Social}} However, this isn't a problem with the ActivityPub protocol itself, but with implementations not refreshing their content for updated data when needed.{{Cite web |last=Nedelcu |first=Alexandru |date=2022-12-21 |title=Missing replies · Mastodon · Discussion #22608 |url=https://github.com/mastodon/mastodon/discussions/22608 |access-date=2024-06-18 |website=GitHub |language=en}}{{Cite web |last=Prodromou |first=Evan |date=2024-06-19 |title=All of that information is available through ActivityPub... |url=https://cosocial.ca/@evan/112641540530853533 |access-date=2024-06-19 |website=CoSocial |language=en}}{{Citation needed|date=June 2024|reason=Add a citation for this claim; Additionally, in this entire paragrpah, add citations for software other than Mastodon.}}

Software using ActivityPub

class="wikitable sortable plainrowheaders" style="width: 100%;"

! scope="col" | Software name

! scope="col" data-sort-type=number | Total users{{Cite web |title=Fediverse Observer |url=https://fediverse.observer/ |access-date=2024-06-22 |website=fediverse.observer |language=en}}{{Cite web |title=FediDB, Fediverse Network Statistics |url=https://fedidb.org/ |access-date=2024-06-22 |website=fedidb.org |language=en}}

! scope="col" | Initial ActivityPub-compatible release

! scope="col" | Type of software

! scope="col" | Fork of

scope="row" | Akkoma

| 9,530

| 2022{{Cite web |date=24 June 2022 |title=Akkoma: A vision to refocus Pleroma |url=https://coffee-and-dreams.uk/development/2022/06/24/akkoma.html |url-status=live |archive-url=https://web.archive.org/web/20230701181427/https://coffee-and-dreams.uk/development/2022/06/24/akkoma.html |archive-date=July 1, 2023 |access-date=July 25, 2023 |website=Coffee and Dreams |language=en}}

| Blogging

| Pleroma

scope="row" | BookWyrm{{Cite web |last=bookwyrm |title=Bookwyrm |url=https://bookwyrm.social/ |url-status=live |archive-url=https://web.archive.org/web/20210526163044/https://bookwyrm.social/ |archive-date=May 26, 2021 |access-date=May 26, 2021}}

| 49,600

| 2021{{Cite web |date=6 May 2021 |title=BookWyrm (@bookwyrm@tech.lgbt) |url=https://tech.lgbt/@bookwyrm/106189922705252293 |url-status=live |archive-url=https://web.archive.org/web/20230725173607/https://tech.lgbt/@bookwyrm/106189922705252293 |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=LGBTQIA+ Tech Mastodon |language=en}}

| Book cataloging

|

scope="row" | Castopod

| 818 podcasts{{Cite web |title=Castopod Index |url=https://index.castopod.org/ |access-date=2025-05-02 |website=index.castopod.org |language=en}}

| 2020{{Cite web |title=Release v1.0.0-alpha.1: chore(release): 1.0.0-alpha.1 [skip ci] · ad-aures/castopod |url=https://github.com/ad-aures/castopod/releases/tag/v1.0.0-alpha.1 |url-status=live |archive-url=https://web.archive.org/web/20230725173610/https://github.com/ad-aures/castopod/releases/tag/v1.0.0-alpha.1 |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=GitHub |language=en}}

| Audio hosting

|

scope="row" | Discourse

| {{unknown|?}}

| 2025{{Cite web |date=2025-04-23 |title=Discourse and the Fediverse! |url=https://blog.discourse.org/2025/04/discourse-and-the-fediverse/ |access-date=2025-05-11 |website=Discourse |language=en}}

| Internet forum

|

scope="row" | [https://dokie.li/ dokieli]

| {{unknown|?}}

| 2018{{Cite web |title=ActivityPub implementation reports |url=https://activitypub.rocks/implementation-report/ |access-date=2018-01-03}}

| Authoring system, Blogging, Notification system, Semantic publishing, Web annotation

|

scope="row" | Epicyon

|3

| 2019{{Cite web |title=Epicyon 1.0 release {{!}} LibreServer Blog |url=https://blog.libreserver.org/epicyon-1-0-release |url-status=live |archive-url=https://web.archive.org/web/20230609235533/https://blog.libreserver.org/epicyon-1-0-release |archive-date=June 9, 2023 |access-date=July 25, 2023 |website=blog.libreserver.org}}

| Blogging

|

scope="row" | Firefish

| 4,560

| 2022{{Cite web |title=firefish |url=https://codeberg.org/firefish/firefish/releases/tag/v12.117.1-calc |url-status=live |archive-url=https://web.archive.org/web/20230726150238/https://codeberg.org/firefish/firefish/releases/tag/v12.117.1-calc |archive-date=July 26, 2023 |access-date=July 26, 2023 |website=Codeberg.org}}

| Blogging

| Misskey

scope="row" | Flipboard{{Cite web |last=Perez |first=Sarah |date=23 May 2023 |title=Flipboard becomes first app to support Bluesky, Mastodon and Pixelfed all in one place |url=https://techcrunch.com/2023/05/23/flipboard-becomes-first-to-support-bluesky-mastodon-and-pixelfed-all-in-one-app/ |access-date=7 July 2023 |website=TechCrunch}}

| 145,000,000{{Cite web |title=Twitter, Who? Flipboard Adds Mastodon Features, Pushing Further Into Social Networking |url=https://www.cnet.com/news/twitter-who-flipboard-adds-mastodon-features-pushing-further-into-social-networking/ |access-date=2024-06-23 |website=CNET |language=en}}

| 2023{{Cite web |date=Dec 18, 2023 |title=Flipboard is pivoting to ActivityPub and the fediverse |url=https://www.theverge.com/2023/12/18/24006062/flipboard-fediverse-mastodon-activitypub-profiles-social |website=The Verge}}{{Cite web |last=McCue |first=Mike |date=19 December 2023 |title=Flipboard Begins to Federate |url=https://medium.com/@mmccue/flipboard-begins-to-federate-4a80d6bdc209 |access-date=2 January 2024 |website=Medium |language=en}}

| Social news

|

scope="row" | Friendica{{Cite web |title=Friendica 2019.01 released |url=https://friendi.ca/2019/01/21/friendica-2019-01-released/ |access-date=2019-01-24}}

| 19,800

| 2019

| Blogging, event management, groups, image gallery

|

scope="row" | Funkwhale

| 8,850

| 2018{{Cite web |last=Collective |first=Funkwhale |title=Funkwhale Blog ~ Funkwhale 0.17 is out! |url=https://blog.funkwhale.audio/funkwhale-017-is-out.html |url-status=live |archive-url=https://web.archive.org/web/20230725173608/https://blog.funkwhale.audio/funkwhale-017-is-out.html |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=blog.funkwhale.audio |language=en}}

| Audio hosting

|

scope="row" | Gancio{{Cite web |title=Home |url=https://gancio.org/ |url-status=live |archive-url=https://web.archive.org/web/20230724210414/https://gancio.org/ |archive-date=July 24, 2023 |access-date=July 24, 2023 |website=Gancio}}

| 1,900

| 2020{{Cite web |title=v0.21.0 · les / gancio · GitLab |url=https://framagit.org/les/gancio/-/releases/v0.21.0 |url-status=live |archive-url=https://web.archive.org/web/20230725173604/https://framagit.org/les/gancio/-/releases/v0.21.0 |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=GitLab |language=en}}

| Calendar, event planner

|

scope="row" | Ghost{{Cite web |last=Ahooja |first=Anuj |date=2024-04-22 |title=Substack Competitor Ghost Announces ActivityPub Integration |url=https://wedistribute.org/2024/04/ghost-implements-activitypub/ |access-date=2024-04-28 |website=We Distribute |language=en-US}}{{Cite web |last=Patel |first=Nilay |date=2024-04-22 |title=Newsletter platform Ghost adopts ActivityPub to 'bring back the open web' |url=https://www.theverge.com/2024/4/22/24137296/ghost-newsletter-activitypub-fediverse-support |access-date=2024-09-09 |website=The Verge |language=en}}

| {{unknown|?}}

| 2025 (in beta){{Cite web |date=2025-04-01 |title=Social web (beta) |url=https://ghost.org/changelog/social-web-beta/ |access-date=2025-05-10 |website=Changelog |language=en}}

| Blogging

|

scope="row" | GNU social

| 93

| 2018{{Cite web |last=diogo |title=diogo/gnu-social |url=https://notabug.org/diogo/gnu-social |access-date=2024-06-22 |website=notabug.org}}

| Blogging

|

scope="row" | Guppe{{Cite web |last=immers-space |title=Decentralized social groups for ActivityPub |url=https://github.com/immers-space/guppe |url-status=live |archive-url=https://web.archive.org/web/20221122084416/https://github.com/immers-space/guppe |archive-date=November 22, 2022 |access-date=November 22, 2022 |website=GitHub}}

| not relevant

| 2021{{Cite web |title=Release First major release · immers-space/guppe |url=https://github.com/immers-space/guppe/releases/tag/v1.0.0 |url-status=live |archive-url=https://web.archive.org/web/20230725173603/https://github.com/immers-space/guppe/releases/tag/v1.0.0 |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=GitHub |language=en}}

| Groups

|

scope="row" | GoToSocial

| 38

| 2021{{Cite web |title=Release v0.1.0 · superseriousbusiness/gotosocial |url=https://github.com/superseriousbusiness/gotosocial/releases/tag/v0.1.0 |url-status=live |archive-url=https://web.archive.org/web/20230722004952/https://github.com/superseriousbusiness/gotosocial/releases/tag/v0.1.0 |archive-date=July 22, 2023 |access-date=July 25, 2023 |website=GitHub |language=en}}

| Blogging

|

scope="row" | Hollo

| 64

| 2024{{Cite web |title=Release Hollo 0.1.0 · dahlia/hollo |url=https://github.com/dahlia/hollo/releases/tag/0.1.0 |url-status=live |archive-url=https://web.archive.org/web/20250126055453/https://github.com/dahlia/hollo/releases/tag/0.1.0 |archive-date=Jan 26, 2025 |access-date=Jan 26, 2025 |website=GitHub |language=en}}

| Blogging

|

scope="row" | Honk

| 6

| 2019{{Cite web |title=honk 0.1 |url=https://flak.tedunangst.com/post/honk |url-status=live |archive-url=https://web.archive.org/web/20230725173604/https://flak.tedunangst.com/post/honk |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=flak.tedunangst.com}}

| Blogging

|

scope="row" | Hubzilla{{Cite web |title=Hubzilla - Frequently asked questions |url=https://hubzilla.org/page/hubzilla/faq |url-status=live |archive-url=https://web.archive.org/web/20230725001644/https://hubzilla.org/page/hubzilla/faq |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=hubzilla.org}}

| 6,740

| 2017

| Blogging, event planner, file hosting, image gallery, wiki

|

scope="row" | Inventaire.io{{Cite web |date=December 7, 2021 |title=Inventaire toot |url=https://mamot.fr/@inventaire/107405333892235843 |url-status=live |archive-url=https://web.archive.org/web/20220828151206/https://mamot.fr/@inventaire/107405333892235843 |archive-date=August 28, 2022 |access-date=October 17, 2022 |website=mamot.fr}}

| {{unknown|?}}

| 2021

| Book cataloging

|

scope="row" | kbin{{Cite web |title=kbin.pub - Fediverse of content |url=https://kbin.pub/en |url-status=live |archive-url=https://web.archive.org/web/20230725125409/https://kbin.pub/en |archive-date=July 25, 2023 |access-date=July 24, 2023 |website=kbin.pub}}

| 507

| 2023

| Social news

|

scope="row" | Lemmy{{Cite web |title=Lemmy - ActivityPub for link aggregation |url=https://nlnet.nl/project/Lemmy/ |access-date=2023-06-05 |website=nlnet.nl}}

| 485,000

| 2019

| Social news

|

scope="row" | Libervia{{Cite web |date=November 2022 |title=Libervia progress note 2022-W45 |url=https://salut-a-toi.org/blog/view/goffi@goffi.org/@/id/libervia-progress-note-2022-w45-MTdL |website=salut-a-toi.org}}

| {{unknown|?}}

| 2022 (in beta)

| Blogging, event management, file sharing, instant messaging

|

scope="row" | lotide{{Cite web |title=lotide |url=https://sr.ht/~vpzom/lotide/ |url-status=live |archive-url=https://web.archive.org/web/20201031143957/https://sr.ht/~vpzom/lotide/ |archive-date=October 31, 2020 |access-date=October 29, 2020}}

| 462

| 2020{{Cite web |title=Release v0.1.1 · lotide-org/lotide |url=https://github.com/lotide-org/lotide/releases/tag/v0.1.1 |url-status=live |archive-url=https://web.archive.org/web/20230725173608/https://github.com/lotide-org/lotide/releases/tag/v0.1.1 |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=GitHub |language=en}}

| Social news

|

scope="row" | Mastodon

| 7,960,000

| 2017{{Cite web |title=Release v1.6.0 · mastodon/mastodon |url=https://github.com/mastodon/mastodon/releases/tag/v1.6.0 |access-date=2024-06-22 |website=GitHub |language=en}}

| Blogging

|

scope="row" | Mobilizon

| 76,900

| 2020

| Event management, groups

|

scope="row" | mbin{{Citation |title=MbinOrg/mbin |date=2024-06-22 |url=https://github.com/MbinOrg/mbin |access-date=2024-06-23 |publisher=Mbin}}

| 6,950

| 2023

| Social news

| kbin

scope="row" | Micro.blog

| 198,000

| 2021{{Cite web |date=2021-03-08 |title=ℹ️ Mastodon and ActivityPub |url=https://help.micro.blog/t/mastodon-and-activitypub/95 |access-date=2024-06-22 |website=Micro.blog Help Center |language=en}}

| Microblogging

|

scope="row" | microblog.pub

| 39

| 2022{{Cite web |title=Release 2.0.0-rc.1 · tsileo/microblog.pub |url=https://github.com/tsileo/microblog.pub/releases/tag/2.0.0-rc.1 |url-status=live |archive-url=https://web.archive.org/web/20230725173603/https://github.com/tsileo/microblog.pub/releases/tag/2.0.0-rc.1 |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=GitHub |language=en}}

| Blogging

|

scope="row" | Misskey

| 2,550,000

| 2018{{Cite web |title=ActivityPub対応国産SNS「Misskey」、LTLも実装 |url=https://www.itmedia.co.jp/news/articles/1804/17/news124.html }}

| Blogging

|

scope="row" | Nextcloud Social

| 50 ({{abbr|approx.|approximately}})

| 2018{{Cite web |last=Poortvliet |first=Jos |date=10 December 2018 |title=Nextcloud introduces social features, joins the fediverse |url=https://nextcloud.com/blog/nextcloud-introduces-social-features-joins-the-fediverse/ |url-status=live |archive-url=https://web.archive.org/web/20181210133202/https://nextcloud.com/blog/nextcloud-introduces-social-features-joins-the-fediverse/ |archive-date=December 10, 2018 |access-date=December 10, 2018 |website=Nextcloud}}

| Blogging

|

scope="row" | NodeBB

| 2,750,000

|2025{{Cite web |last=Tilley |first=Sean |date=2025-01-20 |title=NodeBB Officially Joins the Fediverse |url=https://wedistribute.org/2025/01/nodebb-officially-joins-fediverse/ |access-date=2025-02-12 |website=We Distribute |language=en-US}}

|Internet forum

|

scope="row" | Owncast{{Cite web |date=March 5, 2022 |title=Owncast v0.0.11 |url=https://owncast.online/releases/owncast-0.0.11 |url-status=live |archive-url=https://web.archive.org/web/20220305194706/https://owncast.online/releases/owncast-0.0.11/ |archive-date=March 5, 2022 |access-date=March 5, 2022}}

| 191

| 2022

| Live streaming

|

scope="row" | PeerTube{{Cite web |title=Server-Server - ActivityPub implementation reports |url=https://activitypub.rocks/implementation-report/ |access-date=2019-01-02}}

| 473,000

| 2018

| Video sharing

|

scope="row" | PieFed

|1,116{{Cite web |url=https://fedidb.com/software?page=3&software=piefed |access-date=2025-05-28 |website=fedidb.com}}

|2023https://join.piefed.social/blog/page/3/

|Social News

|

scope="row" | Pixelfed{{Cite web |last=Krasnoff |first=Barbara |date=August 2022 |title=Eight photo-centric social sites that are not Instagram |url=https://www.theverge.com/23280518/instagram-flickr-vero-photos-social-networks |website=The Verge}}

| 718,000

| 2018

| Image sharing

|

scope="row" | Pleroma

| 52,000

| 2018{{Cite web |date=2018-03-04 |title=ActivityPub in Pleroma |url=https://blog.soykaf.com/post/activity-pub-in-pleroma/ |access-date=2024-06-22 |website=blog.soykaf.com |language=en-US}}

| Blogging

|

scope="row" | Plume{{Cite web |last=joinplu.me |title=Plume |url=https://joinplu.me/ |url-status=live |archive-url=https://web.archive.org/web/20190510072641/https://joinplu.me/ |archive-date=May 10, 2019 |access-date=May 2, 2019}}

| 24,400

| 2018{{Cite web |title=Release 0.2.0 (Alpha 1) · Plume-org/Plume |url=https://github.com/Plume-org/Plume/releases/tag/0.2.0-alpha-1 |url-status=live |archive-url=https://web.archive.org/web/20230725173603/https://github.com/Plume-org/Plume/releases/tag/0.2.0-alpha-1 |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=GitHub |language=en}}

| Blogging

|

scope="row" | Postmarks{{Cite web |title=postmarks |url=https://github.com/ckolderup/postmarks |url-status=live |archive-url=https://web.archive.org/web/20230915023957/github.com/ckolderup/postmarks |archive-date=September 15, 2023 |access-date=October 7, 2023 |website=github.com}}

| 25

| 2023{{Cite web |title=Postmarks |url=https://motd.co/2023/09/postmarks-launch/ |url-status=live |archive-url=https://web.archive.org/web/20230923072259/https://motd.co/2023/09/postmarks-launch/ |archive-date=September 23, 2023 |access-date=October 7, 2023 |website=GitHub |date=5 September 2023 |language=en}}

| Social bookmarking

|

scope="row" | Sharkey{{Cite web |title=FediDB, Fediverse Network Statistics |url=https://fedidb.org/software/sharkey |access-date=2025-03-09 |website=fedidb.org |language=en}}

| 23,100

| 2023

| Blogging

| Misskey

scope="row" | Snac{{Cite web |title=Snac - A simple, minimalistic ActivityPub instance written in portable C |url=https://codeberg.org/grunfink/snac2 |access-date=2024-04-19 |website=snac2 |language=en-US}}

| 3,070

| 2022{{Cite web |last=grunfink |title=snac2 |url=https://codeberg.org/grunfink/snac2 |access-date=2024-07-02 |website=Codeberg.org |language=en-US}}

| Blogging

|

scope="row" | Socialhome

| 3,000

| 2016{{Cite web |title=Release v0.1.1: Merge pull request #6 from jaywink/travisify · jaywink/socialhome |url=https://github.com/jaywink/socialhome/releases/tag/v0.1.1 |url-status=live |archive-url=https://web.archive.org/web/20230725173605/https://github.com/jaywink/socialhome/releases/tag/v0.1.1 |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=GitHub |language=en}}

| Blogging

|

scope="row" | Streams{{Cite web |title=streams |url=https://codeberg.org/streams/streams |url-status=live |archive-url=https://web.archive.org/web/20230709002251/https://codeberg.org/streams/streams |archive-date=July 9, 2023 |access-date=November 2, 2022 |website=Codeberg.org}}

| {{unknown|?}}

| 2022{{Cite web |title=Official release |url=https://macgirvin.com/channel/mike?mid=https://macgirvin.com/item/d0d37b08-8522-480c-b0a1-23bf65bd26d5 |url-status=live |archive-url=https://web.archive.org/web/20231213070241/https://macgirvin.com/channel/mike?mid=https://macgirvin.com/item/d0d37b08-8522-480c-b0a1-23bf65bd26d5 |archive-date=December 13, 2023 |access-date=September 23, 2023 |website=Mike Macgirvin |language=en}}

| Blogging, image sharing, wiki

|

scope="row" | Takahē

| 341

| 2022{{Cite web |title=Release 0.3.0 · jointakahe/takahe |url=https://github.com/jointakahe/takahe/releases/tag/0.3.0 |url-status=live |archive-url=https://web.archive.org/web/20230725173606/https://github.com/jointakahe/takahe/releases/tag/0.3.0 |archive-date=July 25, 2023 |access-date=July 25, 2023 |website=GitHub |language=en}}

| Blogging

|

scope="row" | Threads

| 130,000,000{{Cite web |last=Perez |first=Sarah |date=February 2024 |title=Threads now reaches more than 130 million monthly users, says Meta, up 30M from Q3 |url=https://techcrunch.com/2024/02/01/threads-now-reaches-more-130-million-monthly-users-says-meta-up-30m-from-q3/ |archive-url=https://archive.today/20240202011907/https://techcrunch.com/2024/02/01/threads-now-reaches-more-130-million-monthly-users-says-meta-up-30m-from-q3/ |archive-date=2 February 2024 |access-date=1 February 2024 |website=TechCrunch}}

| 2023{{Cite web |last=Davis |first=Wes |date=2023-12-13 |title=Threads is officially starting to test ActivityPub integration |url=https://www.theverge.com/2023/12/13/24000120/threads-meta-activitypub-test-mastodon |access-date=2024-06-22 |website=The Verge |language=en}}

| Blogging

|

scope="row" | Wafrn{{Citation |last=García |first=Gabriel Amador |title=gabboman/wafrn |date=2024-06-21 |url=https://github.com/gabboman/wafrn |access-date=2024-06-22}}

| 2,480

| 2023

| Blogging

|

scope="row" | WordPress{{Cite web |title=ActivityPub for WordPress |url=https://github.com/Automattic/wordpress-activitypub |access-date=7 July 2023 |website=Github}}{{Cite web |title=Engage a Wider Audience With ActivityPub on WordPress.com |url=https://wordpress.com/blog/2023/10/11/activitypub/ |access-date=2023-10-12 |website=WordPress |language=en-US}}

| 29,100 in 6,000+ blogs{{Cite web |last1=Pfefferle |first1=Matthias |last2=Automattic |title=ActivityPub |url=https://wordpress.org/plugins/activitypub/ |access-date=2024-06-23 |website=WordPress.org |language=en-US}}

| 2023{{Cite web |last=Sato |first=Mia |date=2023-10-11 |title=WordPress now offers official support for ActivityPub |url=https://www.theverge.com/2023/10/11/23913278/wordpress-activitypub-official-plugin-automattic-fediverse-mastodon |access-date=2024-06-23 |website=The Verge |language=en}}

| Blogging

|

scope="row" | WriteFreely

| 73,200

| 2018{{Cite web |last=WriteFreely |date=2018-11-10 |title=Hello, World |url=https://blog.writefreely.org/hello-world |access-date=2024-06-22 |website=WriteFreely |language=en}}

| Blogging

|

scope="row" | Zap{{Cite web |title=Zap |url=https://zotlabs.org/page/zap/zap |url-status=live |archive-url=https://web.archive.org/web/20230620225132/https://zotlabs.org/page/zap/zap |archive-date=June 20, 2023 |access-date=July 25, 2023 |website=zotlabs.org}}

| 1

| 2019{{Cite web |title=Zap |url=https://zotlabs.org/page/zap/zap |access-date=2024-06-23 |website=zotlabs.org}}

| Blogging, file hosting, image gallery

|

=Future implementations=

  • GitLab, a Git forge and development platform{{Cite web |title=Support ActivityPub for merge requests (&11247) · Epics · GitLab.org · GitLab |url=https://gitlab.com/groups/gitlab-org/-/epics/11247 |access-date=2023-08-26 |website=GitLab |language=en}}
  • Forgejo, a Git forge and development platform{{Cite web |title=First forgejo monthly update - December 2022 |url=https://forgejo.org/2022-12-26-monthly-update/ |access-date=2023-08-29 |website=forgejo.org |date=26 December 2022 |language=en}}
  • Tumblr, a microblogging platform{{Cite web |last=Perez |first=Sarah |date=2023-12-11 |title=Tumblr's 'fediverse' integration is still being worked on, says owner and Automattic CEO Matt Mullenweg |url=https://techcrunch.com/2023/12/11/tumblrs-fediverse-integration-is-still-being-worked-on-says-owner-and-automattic-ceo-matt-mullenweg/ |access-date=2023-12-19 |website=TechCrunch |language=en-US}}{{Cite web |last=Perez |first=Sarah |date=2022-11-21 |title=Tumblr to add support for ActivityPub, the social protocol powering Mastodon and other apps |url=https://techcrunch.com/2022/11/21/tumblr-to-add-support-for-activitypub-the-social-protocol-powering-mastodon-and-other-apps/ |access-date=2023-12-19 |website=TechCrunch |language=en-US}}{{Cite web |last=Perez |first=Sarah |date=2025-02-11 |title=Tumblr to join the fediverse after WordPress migration completes |url=https://techcrunch.com/2025/02/11/tumblr-to-join-the-fediverse-after-wordpress-migration-completes/ |access-date=2025-02-12 |website=TechCrunch |language=en-US}}

See also

References

{{Reflist}}