Returns a paginated list of knowledge bases for the account, sorted by most recently updated. Each item includes its sources and timestamps. Use page and size for pagination.
Documentation Index
Fetch the complete documentation index at: https://docs.sigmamind.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authenticate every request by passing your API key in the X-API-Key header. To get your key, go to Dashboard → API Keys and create or copy your Production API key.
Zero-based page number to retrieve. Use 0 for the first page. Must be 0 or greater.
Number of knowledge bases to return per page. Must be 1 or greater. Defaults to 10.
Paginated knowledge bases for this account (may be an empty page).
Standard wrapper for paginated API responses. Use this when returning list data that is split across multiple pages. Includes the current page of results along with pagination metadata to help clients navigate through large datasets efficiently.
List of items for the current page. Contains up to 'size' number of records.
Current page number (0-based index). Indicates which page of results is being returned.
0
Number of items requested per page. Determines the maximum size of the 'data' list.
20
Total number of records available across all pages. Useful for calculating pagination on the client side.
125
Total number of pages available based on totalCounts and size. Helps clients understand how many pages exist in total.
7
Indicates whether there is a next page available after the current one. Useful for implementing 'Load More' or next navigation.
true
Indicates whether there is a previous page before the current one. Useful for enabling backward navigation.
false