Get Related Articles
Suggests further reading for an article, for a "related articles" block at the foot of a help-center page. Relatedness is text similarity: the source article's title and description are matched against other articles in the same help center. Only published public articles are considered on both sides, so an unpublished or internal source article returns an empty list rather than an error. Defaults to 5 results.
Authorization
Authorization In: header
Path Parameters
ID of the article to find related articles for.
Query Parameters
ID of the help center to draw related articles from.
Maximum number of related articles to return, between 1 and 10.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://www.saasco.com/api/v2/knowledge/articles/string/related?helpCenterId=string"[
{
"collectionId": "string",
"description": "string",
"id": "string",
"slug": "string",
"title": "string"
}
]{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}{
"code": "UNAUTHORIZED",
"message": "Authorization not provided",
"issues": []
}{
"code": "FORBIDDEN",
"message": "Insufficient access",
"issues": []
}{
"code": "NOT_FOUND",
"message": "Not found",
"issues": []
}{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}Get Public Articles By IDs
Fetches several published articles in one call, for rendering a curated or recommended set without a request per article. Unknown or non-public IDs are skipped, so the response can be shorter than the list you sent and the order is not guaranteed to match.
Search Articles
Full search across a help center's published articles, returning complete articles ranked by relevance plus a `totalCount`. Set `highlight` to also receive the matched fragments of each title and summary, ready to render as emphasised text. This endpoint is public, so it always restricts to published articles no matter what `state` is sent.