Mock RSS endpoint

A live endpoint that answers with a small RSS body and any of 14 HTTP status codes, from 200 to 504. A valid RSS 2.0 feed with one item. Point a feed reader or a cron job at it to test polling. No signup, CORS enabled, nothing logged.

Try the 200 version

curl -i https://demo-rss-200.supercrontab.com/

Sample body (application/rss+xml)

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Mock feed</title>
    <link>https://supercrontab.com/mock/rss</link>
    <description>One item, always the same</description>
    <item>
      <title>Item 42</title>
      <link>https://supercrontab.com/mock/rss/200</link>
      <guid>42</guid>
    </item>
  </channel>
</rss>