# RSS Feed Generate a fully compliant RSS 2.0 XML feed for your blog content, perfect for syndication, feed readers, and content distribution. This endpoint automatically formats your blog posts into the standard RSS format with optional filtering capabilities. RSS 2.0 Compliance: Produces a standards-compliant RSS 2.0 XML feed that works with all major feed readers, news aggregators, and syndication services. The feed includes post titles, descriptions, publication dates, and permalinks. Filtering Options: Apply category or tag filters to create specialized feeds for specific content topics. This allows you to offer targeted RSS feeds for different audience segments or content verticals. Endpoint: GET /feeds/rss/ Version: 2.0.0 Security: readTokenAuthHeader, readTokenAuthQuery ## Query parameters: - `auth_token` (string) Your ButterCMS read API token Example: "your_api_token" - `category_slug` (string) Filter the RSS feed to include only posts from a specific category. Provide the URL-friendly slug of the category. When specified, only blog posts assigned to this category will be included in the RSS feed. Example: "announcements" - `tag_slug` (string) Filter the RSS feed to include only posts with a specific tag. Provide the URL-friendly slug of the tag. When specified, only blog posts tagged with this tag will be included in the RSS feed. Example: "product-updates"