> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shipstar.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get All Blogs RSS Feed

> Get an RSS 2.0 feed of all published blog posts

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

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://app.shipstar.ai/api/v1/blogs/feed"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://app.shipstar.ai/api/v1/blogs/feed');
  const rss = await response.text();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get('https://app.shipstar.ai/api/v1/blogs/feed')
  rss = response.text
  ```
</CodeGroup>

## Response

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

### Example Response

```xml 200 theme={null}
<?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>
```
