> ## 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 Blog Post RSS Feed

> Get a published blog post as an RSS 2.0 feed item

Returns a single published blog post formatted as an RSS 2.0 XML feed. This endpoint does not require authentication.

## Path Parameters

<ParamField path="public_slug" type="string" required>
  The unique public slug of the blog post.
</ParamField>

## Request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://app.shipstar.ai/api/v1/blog/weekly-update-march-31-2025/feed"
  ```

  ```javascript JavaScript theme={null}
  const slug = 'weekly-update-march-31-2025';
  const response = await fetch(`https://app.shipstar.ai/api/v1/blog/${slug}/feed`);
  const rss = await response.text();
  ```

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

  slug = 'weekly-update-march-31-2025'
  response = requests.get(f'https://app.shipstar.ai/api/v1/blog/{slug}/feed')
  rss = response.text
  ```
</CodeGroup>

## Response

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

## Errors

| Status | Description                          |
| ------ | ------------------------------------ |
| 404    | Blog post not found or not published |
| 422    | Invalid slug format                  |
