RSS Feed Examples

Valid boilerplate templates for your project

Building a feed from scratch? Don't guess the syntax. Use these valid, tested examples as a starting point.

Standard RSS 2.0 is the most common format for blogs and news sites.

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

<channel>
  <title>Minimal Blog Feed</title>
  <link>https://example.com</link>
  <description>A simple example of an RSS 2.0 feed.</description>
  
  <item>
    <title>First Post</title>
    <link>https://example.com/first-post</link>
    <description>This is the description of the first post.</description>
    <guid>https://example.com/first-post</guid>
    <pubDate>Mon, 06 Jan 2025 09:00:00 GMT</pubDate>
  </item>

</channel>
</rss>

Validate Your Code

Paste your generated XML into our validator to just confirm it's perfect.

Go to Validator →