REST API
Generate an RSS 2.0 feed for your published articles.
GET
{{baseUrl}}/v1/seo/rssAuth required
| Property | Type | Description | Default |
|---|---|---|---|
baseUrl* | string | Base URL for all links | - |
limit | number | Number of articles | 20 |
path | string | Path prefix (e.g., 'blog') | - |
Returns RSS 2.0 XML feed.
cURL Command
curl -X GET "https://api.simplist.blog/v1/seo/rss?baseUrl=https://myblog.com&limit=50&path=blog" \
-H "X-API-Key: YOUR_API_KEY"<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>My Blog</title>
<link>https://myblog.com</link>
<description>A blog about web development</description>
<language>en</language>
<lastBuildDate>Mon, 09 Dec 2025 12:00:00 GMT</lastBuildDate>
<atom:link href="https://myblog.com/feed.xml" rel="self" type="application/rss+xml"/>
<item>
<title>Getting Started with Simplist</title>
<link>https://myblog.com/blog/getting-started</link>
<guid>https://myblog.com/blog/getting-started</guid>
<pubDate>Wed, 15 Jan 2025 10:30:00 GMT</pubDate>
<description>Learn how to get started with Simplist</description>
</item>
</channel>
</rss>If you're using TypeScript/JavaScript, you can use the SDK instead: client.seo.getRssFeed()