The MDN wiki offers a number of feeds that you can use to monitor the site. Some of these are still something of a work in progress, but this information may still be useful for you.
Accessing the feeds
All feeds start with the following base URL:
https://developer.mozilla.org/<locale>/docs/feeds/<format>/
The placeholders in the base URL can be fillled in with the following:
<locale>
is one of the standard locale strings, such as "en-US", "ja", and so forth. The feed is filtered to only include entries for articles in that locale, unless you add the?all_locales
option to the URL.<format>
is one ofrss
,atom
, orjson
If you use the json
format, you also have the option of supplying a ?callback=<callback name>
query parameter, which follows the JSONP convention for loading data as JavaScript.
Available feeds
all
- All recently changed articles, in order of modification date. This includes newly created articles. All changes are combined into one entry in the feed for each article. For example: https://developer.mozilla.org/en-US/docs/feeds/rss/all
revisions
- Each revision made to an article, in order by modification date, including newly created articles. Each revision has a separate entry in the feed. For example: https://developer.mozilla.org/en-US/docs/feeds/atom/revisions
tag/<tagname>
- Recently changed articles, in order by modification date. Only articles that have the specified tag are included in the feed. For example: https://developer.mozilla.org/en-US/docs/feeds/json/tag/CSS?callback=loadFeed
files
- Recently changed or uploaded files. For example: https://developer.mozilla.org/en-US/docs/feeds/atom/files
l10n-updates
- Articles whose translation parent has changed since the last time they were edited (that is, articles that have been translated from another language and whose source article has been changed). For example: https://developer.mozilla.org/fr/docs/feeds/atom/l10n-updates
needs-review[/<reviewtype>]
- A list of articles that have the specified review request checked, or all articles with a review requested if you don't specify a review type. The review type can be one of
technical
,editorial
, orkumascript
.