Skip to main content
GET
/
blogs
/
feed
Get All Blogs RSS Feed
curl --request GET \
  --url https://api.example.com/blogs/feed
Returns an RSS 2.0 XML feed containing all published blog posts. This endpoint does not require authentication. Use this to provide a single RSS subscription URL for all of your blog content.

Request

curl -X GET "https://app.shipstar.ai/api/v1/blogs/feed"

Response

Returns an RSS 2.0 XML document with Content-Type: application/xml containing all published blog posts.

Example Response

200
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>My Product - Blog</title>
    <description>Latest blog posts and updates</description>
    <item>
      <title>What We Shipped This Week</title>
      <description>This week we focused on improving the dashboard experience...</description>
      <pubDate>Mon, 31 Mar 2025 12:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Introducing Smart Notifications</title>
      <description>We're excited to announce our new notification system...</description>
      <pubDate>Mon, 24 Mar 2025 12:00:00 GMT</pubDate>
    </item>
  </channel>
</rss>