Documentation

Comprehensive guides and references for using MyRSS

Introduction to MyRSS

Welcome to the MyRSS documentation. Learn how to create, manage, and optimize your RSS feeds.

What is MyRSS?

MyRSS is a comprehensive RSS feed hosting platform that allows content creators to easily create, manage, and distribute RSS feeds. Whether you're a blogger, podcaster, news outlet, or any type of content creator, MyRSS provides the tools you need to syndicate your content effectively.

Key Features

  • Free Custom URLs - Every feed gets a custom URL (myrss.org/yourname) for easy sharing and branding.
  • Detailed Analytics - Track subscribers, views, and engagement with comprehensive analytics.
  • Web Editor - Create and edit feeds directly through our intuitive web interface.
  • API Access - Integrate with your existing content workflow through our developer API.
  • Multiple Feed Types - Support for standard RSS feeds, podcast feeds, and various specialized formats.

Who Should Use MyRSS?

MyRSS is designed for a wide range of content creators:

  • Bloggers who want to syndicate their posts and reach a wider audience
  • Podcasters looking for reliable hosting and distribution for their shows
  • News Outlets that need to distribute content updates efficiently
  • Businesses that want to keep customers updated about products and services
  • Developers who need RSS capabilities integrated into their applications

Note: MyRSS offers both free and paid plans to suit different needs. Check out our pricing page for more details on what each plan includes.

Quick Start Guide

Get up and running with MyRSS in just a few minutes by following these steps:

1. Create Your Account

Sign up for a free MyRSS account to get started:

  1. Go to the signup page
  2. Enter your email address and choose a password
  3. Verify your email address by clicking the link in the confirmation email

2. Create Your First Feed

Once logged in, you can create your first RSS feed:

  1. From your dashboard, click the "Create New Feed" button
  2. Enter a name and description for your feed
  3. Choose a custom URL (myrss.org/yourname)
  4. Select the appropriate feed type (standard, podcast, etc.)
  5. Click "Create Feed" to generate your new feed

3. Add Content to Your Feed

Start adding entries to your newly created feed:

  1. Navigate to your feed's management page
  2. Click "Add New Entry"
  3. Fill out the title, content, and any other relevant fields
  4. Add media attachments if needed (images, audio files, etc.)
  5. Click "Publish" to add the entry to your feed

4. Share Your Feed

Now that your feed is active and has content, you can share it:

  • Copy your feed's URL (myrss.org/yourname)
  • Add a subscription button to your website using our provided code snippets
  • Share your feed URL on social media and with your audience
<!-- MyRSS Subscribe Button (HTML) --> <a href="https://myrss.org/yourname" class="myrss-subscribe"> Subscribe to my RSS feed </a> <!-- Include our button styles (optional) --> <link rel="stylesheet" href="https://cdn.myrss.org/buttons.css">

Feed Structure

Understanding the structure of an RSS feed is important for creating effective content. Here's an overview of how RSS feeds are structured in MyRSS:

Basic RSS Feed Structure

An RSS feed is an XML document with a specific structure. The basic components include:

<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>Feed Title</title> <link>https://yourdomain.com</link> <description>Description of your feed</description> <lastBuildDate>Mon, 06 Sep 2025 00:01:00 +0000</lastBuildDate> <item> <title>Entry Title</title> <link>https://yourdomain.com/entry1</link> <description>Description of this entry</description> <pubDate>Mon, 06 Sep 2025 00:01:00 +0000</pubDate> <guid>https://yourdomain.com/entry1</guid> </item> <!-- More items... --> </channel> </rss>

Feed Metadata

The channel element contains metadata about your feed:

Element Description Required?
title The name of your feed Yes
link The URL to your website Yes
description A short description of your feed Yes
language The language of your feed content No
lastBuildDate When your feed was last updated No
image An image/logo for your feed No

Important: While MyRSS handles much of the technical aspects of feed creation for you, understanding the structure helps you optimize your content for better distribution and reader experience.