No. Anthropic does not publish an official RSS feed for its news, blog, or research pages. Every standard feed path returns a 404, and there's no rel="alternate" feed link anywhere on its news page for a reader to discover one automatically.
This is a real gap, not a guess. OpenAI ships a working RSS feed at openai.com/news/rss.xml. Anthropic doesn't have an equivalent anywhere on anthropic.com or claude.com.
Verified 2026-08-28 by requesting each URL directly and checking a live GitHub search for unofficial replacements.
Facts
| Path checked | Result |
|---|---|
| anthropic.com/rss.xml | 404 |
| anthropic.com/feed.xml | 404 |
| anthropic.com/news/rss.xml | 404 |
| claude.com/rss.xml | 404 |
| claude.com/blog/rss.xml | 404 |
rel="alternate" feed link on anthropic.com/news | Not present |
| openai.com/news/rss.xml (for comparison) | 200, works |
People are already building around this
A live GitHub search for repositories mentioning Anthropic and RSS returns 37 results. Several are purpose-built to patch this exact gap:
- ElmerTucker/claude-watcher: an unofficial hourly RSS/Atom feed for
anthropic.com/news, built on GitHub Actions - tim-hilde/anthropic-rss: an unofficial daily-updated RSS feed for
claude.com/blog - wirobx/anthropic-red-rss: an RSS feed for Anthropic's
red.anthropic.comblog - sefaertunc/anthropic-watch: monitors 37 Anthropic sources daily and publishes structured RSS/JSON feeds
- akao47/yuna-feeds-bridge: a general RSS bridge for sources with no native feed, Anthropic news included
Every one of these is a hobbyist project scraping a page that could change its markup at any time. That's not a criticism of the people who built them. It's the actual cost of there being no official feed: someone has to run a scraper and hope it keeps working.
Why this matters beyond RSS
An RSS feed is a narrow tool anyway. It gives you new posts as they land, with no structure beyond a title and a link. It doesn't tell you whether a post is a model release, a policy update, or a research paper, and it doesn't merge duplicate coverage when 3 other outlets write about the same announcement.
Scoopkit ingests Anthropic through the same pipeline described in how Scoopkit deduplicates AI news headlines, among 40-plus other sources, and turns each real announcement into one typed, structured event instead of a raw feed item. You can query it directly with a free API key, without maintaining a scraper that breaks when Anthropic changes its site.
FAQ
Does Anthropic have an RSS feed?
No, as of 2026-08-28. All standard feed paths on anthropic.com and claude.com return 404, and no feed-discovery link exists on the news page.
What about OpenAI?
OpenAI does ship one, at openai.com/news/rss.xml. It returns a working feed as of this check.
How do I get Anthropic news programmatically without scraping it myself?
Use one of the unofficial GitHub mirrors if a raw feed is enough, or query Scoopkit's /v1/events endpoint if you want the announcement already deduplicated and classified instead of a raw scrape.