Returns the full set of articles and collections
GET /knowledge/articles/{id}
Fetches a single article, including HTML content
GET /knowledge/collections/{id}
Fetches metadata and articles inside a collection
POST /knowledge/articles/
Create a new article
POST /knowledge/collections/
Create a new collection
PATCH /knowledge/articles/{id}
Update fields of an article
PATCH /knowledge/collections/{id}
Update fields of a collection
DELETE /knowledge/articles/{id}
Delete an article
DELETE /knowledge/collections/{id}
Delete a collection
All responses are JSON
. Articles include fields such as id
, title
, slug
, content
, published
, and timestamps. Collections include id
, title
, slug
, and a list of associated article IDs. For more details, see the dedicated pages for articles and collections.
The knowledge base API follows Fernand’s global rate limiting rules. Standard HTTP error codes are used to indicate problems (such as 401 Unauthorized
for missing or invalid API keys, 404 Not Found
for missing resources, and 409 Conflict
for slug collisions when updating).
Start with Fetching the knowledge base structure to learn how to query your entire KB. Then explore the articles and collections pages to understand how to retrieve and update specific content.