rss699 B
RSS 2.0 Feed
A well-formed RSS 2.0 feed with a channel and multiple items — for testing feed readers and parsers.
Preview — first 23 linesrss
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Novus Examples Feed</title>
<link>https://examples.novusstreamsolutions.com</link>
<description>Sample RSS feed for parser testing</description>
<item>
<title>First post</title>
<link>https://example.com/1</link>
<guid>1</guid>
<pubDate>Wed, 01 Jan 2026 09:00:00 GMT</pubDate>
<description>The first item.</description>
</item>
<item>
<title>Second post</title>
<link>https://example.com/2</link>
<guid>2</guid>
<pubDate>Thu, 02 Jan 2026 09:00:00 GMT</pubDate>
<description>The second item.</description>
</item>
</channel>
</rss>
Specifications
What is a .rss file?
RSS (Really Simple Syndication) is an XML-based web feed format that publishes a channel of items with titles, links, descriptions, and publication dates. It lets readers and aggregators track updates to blogs, news, and podcasts. It is a long-established syndication standard.
How to use this file
Use an example RSS file to test feed parsers, item and metadata extraction, and aggregator or podcast-client ingestion logic.
Related files
- atomAtom FeedA well-formed Atom feed with multiple entries — for testing feed readers and parsers.
- csv10,000-Row CSVA CSV with 10,000 data rows — for testing streaming parsers, memory handling, and import performance.
- jsonAPI Error — 404 (RFC 9457 problem+json)A 404 error body in RFC 9457 (problem+json) form, with type, title, status, detail, and instance — for testing structured error handling and problem-detail parsers.
- jsonAPI Error — 422 Validation (JSON)A 422 validation-error response with a machine-readable list of field errors — for testing form-validation surfacing and error mapping.
- jsonAPI Response — Users Page 1 (JSON)Page 1 of a paginated JSON API response (users), with page metadata and a `hasMore` flag. Paired with page 2 for testing pagination and infinite-scroll logic.
- jsonAPI Response — Users Page 2 (JSON)Page 2 (the final page) of a paginated JSON API response. Paired with page 1 for testing pagination, `hasMore` handling, and list merging.
Generated by generation/data_formats.py. Free for any use, no attribution required — license.