---
title: "List Answer Library entries"
method: GET
path: "/knowledge-base/answer-library"
tags: ["Knowledge Base"]
---

# List Answer Library entries

`GET /knowledge-base/answer-library`

List Answer Library entries. Supports full-text search, tag filtering
(OR across the given tags), and date-range filters on last-updated and
expiration.

## Query parameters

- `pageSize` integer — Controls the maximum number of items returned in one response from the API.
- `pageCursor` string — A marker or pointer, telling the API where to start fetching items for the subsequent page in a paginated dataset. Note that the requested page will not include the item that corresponds to this cursor but will start from the one immediately after this cursor.
- `q` string
- `lastUpdatedAfter` string
- `lastUpdatedBefore` string
- `matchesTags` string
- `expiresBefore` string
- `expiresAfter` string

## Response `200`

Ok

- PaginatedResponseKnowledgeBaseAnswerLibraryEntryOutput
  - `results` object, required
    - `data` KnowledgeBaseAnswerLibraryEntryOutput[], required
      - `id` string, required
      - `question` string, required
      - `answer` string, required
      - `expirationStatus` 'CURRENT' | 'EXPIRED', required
      - `ownerAssignment` AnswerLibraryActorAssignment, required
        - `type` 'User' | 'Team', required
        - `id` string, required
        - `displayName` string, nullable, required
      - `expirationDate` string, nullable, required
      - `lastUpdated` string, required
      - `lastVerified` string, nullable, required
      - `tags` TagInput[], required
        - `categoryId` string, required
        - `tagId` string, required
    - `pageInfo` PageInfo, required — Provides information about the pagination of a dataset.
      - `endCursor` string, nullable, required — The cursor that points to the end of the current page, or null if there is no such cursor.
      - `hasNextPage` boolean, required — Indicates if there is another page after the current page.
      - `hasPreviousPage` boolean, required — Indicates if there is a page before the current page.
      - `startCursor` string, nullable, required — The cursor that points to the start of the current page, or null if there is no such cursor.

---

[API](https://skmtc.net/vanta/apis/build-integrations.md) · [All operations](https://skmtc.net/vanta/apis/build-integrations/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vanta/build-integrations/revisions/6c1f7590538b/schema)
