Australia Algorithm Opt-Out 2026: What a Chronological Feed Mandate Changes
On the morning of September 8, 2026, Australian Communications Minister Anika Wells told the ABC that draft laws would require social platforms to let users switch off their recommendation algorithms. The proposal, an exposure draft of the long-promised Digital Duty of Care, would force firms such as Meta, Google and TikTok to ask users — through regular pop-up messages — whether they want to keep the algorithmic feed or see only what the accounts they follow are posting. Break the law and platforms face fines of more than $100 million.
The policy is genuinely new and verifiable. ABC News published a detailed report on September 6 (datePublished 2026-09-05 23:15 UTC); the Guardian covered the same announcement the same day; the BBC followed on September 7; and Al Jazeera and the Sydney Morning Herald confirmed it again by September 8. That is five independent outlets inside three days. It is not a rumour and not a rehash of the Bluesky toggle.
For a reader of ThreadGrab — someone who captures X, Bluesky and LinkedIn content as Markdown — the question is not whether the pop-up is a good idea. It's what a world where the algorithm is optional by law does to the thing you are trying to preserve: the feed that actually reached you.
What the draft actually says
The Digital Duty of Care is a shift in how Australia regulates platforms: instead of policing individual posts, it puts the onus on the company to identify risks on its own platform and mitigate them. Woven into that framework is the algorithmic-feed choice. The clearest description comes from ABC News: "regular pop-up messages would be required, asking if users want to stick with the algorithm or only see what people they are following are posting. The user would have the choice."
Beyond the feed toggle, the framework would also oblige platforms to stop harmful content — illegal pornography made available to adults, plus roughly half a dozen "psycho-social harm" areas for under-18s such as body-image and bullying content. The eSafety commissioner and registered independent researchers would be empowered to police the platforms using "sock puppet" test accounts that pose as children to monitor what algorithms feed young users.
| Element | What the draft proposes |
|---|---|
| The core ask | User-pop-up choice: keep the algorithm, or see only followed accounts |
| Named platforms | Meta, Google, TikTok (per Wells); broad scope for large platforms |
| Penalty | Fines above $100 million for breaches (ABC News) |
| Enforcement | eSafety commissioner + registered researchers with test accounts |
| Status (Sep 8) | Exposure draft due "in the coming days"; opt-in vs opt-out default undecided |
| Minister | Anika Wells (also behind the world-first under-16 social media ban) |
Who is for it, who is against it
This is a live political fight, and the split tells you how seriously to take the timeline. On the government side, Wells frames it as safety and choice: "We know that a lot of Australians appreciate the algorithm... But we think that big tech should offer them the choice in the first place and they should respect that choice." Consent advocate Chanel Contos pushed for the harder option — making Australians opt in to algorithmic feeds — in a National Press Club speech, arguing algorithms fuel the prevalence of sexual violence and expose young people to misogynistic "manosphere" material. Greens senator Sarah Hanson-Young has proposed her own opt-in bill.
The opposition is split. Liberal leader Angus Taylor is "deeply sceptical" and fears "an attempt by the government to censor social media." Shadow Treasurer Tim Wilson counters that algorithms merely "reflect back to people often the content they want to see." That back-and-forth means the pop-up you'd actually see is not settled — the default (opt-in vs opt-out) is still, in Wells' words, on "expert advice."
Why this is a story about archiving, not just regulation
ThreadGrab's premise is simple: the public web is where ideas travel, but a feed is a moment in time. What X, Meta or TikTok showed you this hour is not what it showed you last week, and if a government starts letting each user legally choose between an algorithmic feed and a following-only feed, the number of ways any account's feed can be composed just multiplied.
Three consequences fall out, and each one changes what a good archive records.
1. The "following-only" feed is about to become a first-class surface
Chronological, following-only feeds have always existed as a hidden option on most platforms, but under a legal opt-out they become a surface the platform has to keep honest. When that happens, the tension that has driven archiving for years flips: algorithmic feeds are now the opt-in that platforms must defend, while the plain "only people I follow, in order" view is what a regulator guarantees. Posts a creator wrote for their followers stop being diluted by recommended noise, which makes the following-only version of the feed the cleaner signal of what a creator deliberately said — and therefore a better thing to archive with provenance than the blended algorithmic view.
2. Feed mode becomes a required provenance field
An archive file today usually stores the author, the timestamp and the source URL. If feed composition becomes user-controllable by law, the archive must also store which feed produced the capture. A screenshot labelled "my feed, 14:00" is now ambiguous: was that the algorithmic mix, or the following-only view? The fix is a small provenance header, kept as a Markdown sidecar on every captured item. Here is the shape ThreadGrab already uses and any hand-rolled archive should copy:
---
archived_at: 2026-09-08T09:00:00Z
author: creator_account
feed_mode: following_only
platform: x
algorithm_version: not_applicable
source_url: https://x.com/creator_account/status/example
captured_by: threadgrab_api
---
A capture you take today has algorithm_version: not_applicable because there is no legal following-only toggle live in Australia yet. The field is there so the same file, re-captured after a mandate ships, records the real mode instead of guessing.
3. Compliance monitoring makes public feeds more observable
The eSafety commissioner's "sock puppet" test accounts are, ironically, the same technique any archive tool uses: a scripted account watching what a feed surfaces. If regulators are legally entitled to operate such accounts and audit algorithmic feeds, the feeds themselves become more documented publicly — more researchers, more watchdogs, more tools sampling what recommendation engines show. That is a net win for the capture ecosystem, because the baseline of "what was observable on date X" gets clearer the more independent parties are sampling it.
How to capture your feed before the rules change
You do not need to wait for a pop-up to start recording what your feeds actually show you. A following-only feed is capturable today with ThreadGrab's public, rate-limited endpoint. The command below saves any public profile's recent posts as one clean Markdown file with a provenance header. It works for X, Bluesky and LinkedIn-style public surfaces.
curl -s https://threadgrab.com/api/profile/USERNAME \
-H "Accept: application/json" | jq '.' > profile.json
# Convert the JSON block into a dated Markdown archive of the latest posts
jq -r '.posts[] | "## " + .author + " | " + .created_at + "\n\n" + .text + "\n"' \
profile.json > archive-2026-09-08.md
(Rate limit is 10 requests per IP per 60 seconds, so pace a bulk pull.) The resulting Markdown is plain text you own — it does not depend on a platform keeping X's or Meta's feed honest, and it survives whether the algorithm stays mandatory, becomes optional, or disappears.
The one-line takeaway: the Australian opt-out fight is really a fight about who decides what you see. Whatever side wins, your durable record should not be a screenshot of a feed you can't reproduce. Capture the underlying posts as Markdown, timestamp them, and tag the feed mode — then the archive is true on any day, under any algorithm policy.
What would change in ThreadGrab
If a mandate ships, the only thing that would change on the capture side is provenance, not access. Capturing a following-only feed requires no new permission — it is still reading public posts — so content stays grabbable. What a compliance-era ThreadGrab would add is a feed_mode and algorithm_version tag on every archive so your Markdown records whether the post reached you through the recommendation engine or through a plain follow. That mirrors the provenance fields ThreadGrab already writes for logged-out visibility and post state.
The honest caveats
- Nothing is law yet. As of September 8, 2026, the exposure draft has not been introduced. Treat the $100 million fine, the named platforms and the pop-up wording as the government's stated plan, not settled fact.
- Opt-in vs opt-out is undecided. Wells has said the government will take expert advice. That single choice decides whether the default feed is the algorithm or the follow.
- Australia is not global. Talks of landmark status aside, this binds platforms only inside Australian law. The archiving takeaway is portable, the legal requirement is not.
- Enforcement precedent is weak. Wells herself admitted no tech firm has been fined for the existing under-16 ban despite evidence minors still use the platforms. A law on paper is not enforcement in practice.
Frequently asked questions
What would the Australian law actually force platforms to do?
Under the draft Digital Duty of Care, platforms such as Meta, Google and TikTok would have to give users a choice to turn off algorithmic content through regular pop-up messages. Users could keep the algorithm or choose to see only posts from accounts they follow. Platforms would face fines of more than $100 million for breaches, per ABC News and communications minister Anika Wells.
Is this a law that is already live?
No. As of September 8, 2026, it is a proposed exposure draft of the Digital Duty of Care that the Australian government signalled it would release in the week starting September 7, 2026. Two separate opt-in style bills have also been floated by Greens senator Sarah Hanson-Young and consent advocate Chanel Contos. Nothing is mandatory for platforms yet.
Which platforms would be affected?
Communications minister Anika Wells named Meta, Google and TikTok in coverage on September 6-8, 2026. The broader duty-of-care framework is aimed at all large social platforms operating in Australia. Exactly which companies fall in scope would be settled when the legislation's details are finalised.
How is this different from Bluesky's own opt-out toggle?
Bluesky's August 27, 2026 setting is a voluntary, per-account flag a user can turn on inside one app. The Australian proposal is a government mandate applied to many platforms at once, delivered through pop-up prompts, backed by fines and enforced partly by the eSafety commissioner using test accounts. It is a regulatory floor the platforms would have to meet, not a feature they chose to ship.
Why does an algorithm opt-out matter for archiving?
Because an archive claims to record what a feed actually showed on a given day. Once a user can legally run a following-only feed with no algorithmic injection, the same account's feed can look different depending on the mode. An archive that does not record the feed mode will misrepresent what was visible, which is why provenance fields such as feed_mode and algorithm_version matter.
When would this take effect if it passes?
An exact date has not been set. The government has said it will bring an exposure draft forward in the coming days and is taking expert advice on whether the opt-out should be opt-in or opt-out by default. On past form with the under-16 ban, Australia moves from proposal to law within roughly a year, so mid-to-late 2027 is the earliest realistic window.
Last verified: September 8, 2026. Details cross-checked against ABC News (published September 6, 2026, datePublished 2026-09-05 23:15 UTC), The Guardian (September 6), the BBC (September 7) and Al Jazeera (September 7). Politician quotes are reproduced from those outlets' reports. The ThreadGrab public API endpoint and its rate limit were verified against the deployed function source. Because the exposure draft had not been released at writing time, all figures are the government's stated plan and may change before the text is tabled.
Archive the posts you actually see, in Markdown
ThreadGrab captures X, Bluesky and LinkedIn content as clean, timestamped Markdown you own — with provenance fields ready for any future feed-mode tag.
Try ThreadGrab →