Knowledge
List Knowledge Chunks
Retrieve a paginated list of all processed content chunks from a specific knowledge source. Chunks are smaller segments of content that have been extracted and processed from the original knowledge source. Each chunk contains content text and associated metadata that can be used for semantic search and retrieval operations.
get/v2/KnowledgeBases/{kbId}/Knowledge/{knowledgeId}/Chunks
Query parameters
pageSizeinteger
How many resources to return in each list page. The default is 50, and the maximum is 1000.
pageTokenstring
The page token. This is provided by the API.
Response
OK
Example response
{
"chunks": [
{
"content": "To reset your password, go to the login page and click 'Forgot Password'.",
"createdAt": "2026-01-15T10:30:00Z"
}
],
"meta": {
"key": "knowledge",
"pageSize": 50,
"nextToken": "eyJlYXN0ZXIiOiJlZ2cifQ",
"previousToken": ""
}
}