Skip to main content
Returns a paginated list of the Q&A entries in your organization’s knowledge base — the question/answer pairs your AI agents draw on when replying. Results are ordered by createdAt ascending with a stable tiebreak, so paging through every page is a consistent full export.

Authentication

Bearer token in the Authorization header. See Authentication.

Query parameters

integer
default:"20"
Number of Q&As per page. Range 1100.
string
Opaque cursor from the previous response’s nextCursor. See Pagination.

Response

Returns a list envelope containing Qa objects.

The Qa object

string
Unique identifier. Treat it as opaque.
string
Always "qa".
string
The primary phrasing of the question.
string[]
Alternative phrasings of the same question, sorted alphabetically. Empty when only the primary phrasing exists.
string
The answer content.
string | null
ID of the AI agent this Q&A is scoped to, prefixed with agent_. null when the Q&A applies to every agent in the organization.
string
ISO 8601 UTC timestamp of Q&A creation.
string
ISO 8601 UTC timestamp of the most recent update.

Examples

List Q&As

Response

Walk every page

See the pagination guide for a copy-paste loop in Node and Python.

Error responses

See Errors for the full error envelope reference.