Skip to main content
GET
/
changelog
/
{public_slug}
/
feed
Get Changelog RSS Feed
curl --request GET \
  --url https://api.example.com/changelog/{public_slug}/feed
Returns a published changelog formatted as an RSS 2.0 XML feed. This endpoint does not require authentication. Use this to let users subscribe to your changelog updates in their preferred RSS reader.

Path Parameters

public_slug
string
required
The unique public slug of the changelog.

Request

curl -X GET "https://app.shipstar.ai/api/v1/changelog/my-product-changelog-march-2025/feed"

Response

Returns an RSS 2.0 XML document with Content-Type: application/xml.

Example Response

200
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>My Product - Changelog</title>
    <description>Latest product updates and changes</description>
    <item>
      <title>Dashboard redesign</title>
      <description>Completely rebuilt dashboard with new analytics views.</description>
      <category>New Features</category>
      <pubDate>Tue, 01 Apr 2025 10:00:00 GMT</pubDate>
    </item>
  </channel>
</rss>

Errors

StatusDescription
404Changelog not found or not published
422Invalid slug format