Retrieve a paginated list of knowledge slices within an organization.
GEThttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/slices
Returns all knowledge slices belonging to the specified organization. Results can be filtered by status and type, and are returned in a paginated format.
organization_id string required
The unique identifier of the organization (format: org_*).
status string optional
Filter slices by status (e.g., active, archived).
type string optional
Filter slices by type. Allowed values: standard, personal, chat_space.
skip integer optional · Defaults to 0
Number of items to skip for pagination.
limit integer optional · Defaults to 20
Maximum number of items to return (1-100).
A paginated list of knowledge slice objects with items, total, skip, limit, and has_more fields.
cURL
- Bash
- Python
- Python
- JavaScript
curl "https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/slices?status=active&limit=10" \
-H "Authorization: Bearer $ACCESS_TOKEN"