Skip to main content
GET
/
kb
/
{public_slug}
Get Public KB Articles
curl --request GET \
  --url https://api.example.com/kb/{public_slug}
Retrieves a set of published knowledge base articles by its public slug. Returns the articles array and metadata. This endpoint does not require authentication.

Path Parameters

public_slug
string
required
The unique public slug of the KB article set.

Request

curl -X GET "https://app.shipstar.ai/api/v1/kb/shipstar-knowledge-base"

Response

Returns the KB article set with its full content, including categorized articles.

Example Response

200
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "slug": "shipstar-knowledge-base",
  "content": "{\"articles\": [{\"category\": \"Getting Started\", \"title\": \"How to connect your GitHub account\", \"body\": \"Navigate to Sources in your dashboard and click Connect GitHub...\"}, {\"category\": \"Content Generation\", \"title\": \"Generating your first changelog\", \"body\": \"Once your repositories are connected, go to the Content tab...\"}]}",
  "published_at": "2025-03-31T12:00:00Z",
  "created_at": "2025-03-31T10:00:00Z"
}

Errors

StatusDescription
404KB articles not found or not published
422Invalid slug format