> ## 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.

# List Published Changelogs

> List all published changelogs, newest first

Returns an array of all published changelogs, ordered by most recent first. This endpoint does not require authentication.

## Request

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

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

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

  response = requests.get('https://app.shipstar.ai/api/v1/changelogs')
  changelogs = response.json()
  ```
</CodeGroup>

## Response

Returns an array of changelog objects. Each changelog contains structured entries with categories, titles, and descriptions.

### Example Response

```json 200 theme={null}
[
  {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "slug": "my-product-changelog-march-2025",
    "content": "{\"title\": \"March 2025 Changelog\", \"entries\": [...]}",
    "period_start": "2025-03-01T00:00:00Z",
    "period_end": "2025-03-31T23:59:59Z",
    "published_at": "2025-04-01T10:00:00Z",
    "created_at": "2025-03-31T15:00:00Z"
  }
]
```
