> ## 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 KB Articles

> List all published knowledge base article sets, newest first

Returns an array of all published knowledge base article sets, 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/kb"
  ```

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

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

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

## Response

Returns an array of KB article set objects. Each set contains categorized help articles generated from your commits.

### Example Response

```json 200 theme={null}
[
  {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "slug": "shipstar-knowledge-base",
    "content": "{\"articles\": [{\"category\": \"Getting Started\", \"title\": \"How to connect your GitHub account\", \"body\": \"...\"}]}",
    "published_at": "2025-03-31T12:00:00Z",
    "created_at": "2025-03-31T10:00:00Z"
  }
]
```
