Retrieve a paginated list of composite slices within an organization.
GEThttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/composites
Returns all composite slices for the specified organization. Composite slices aggregate multiple individual knowledge slices, allowing unified queries across several data sources.
organization_id string required
The unique identifier of the organization (format: org_*).
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 composite slice objects. Each object includes a member_slice_ids array containing the IDs of its member slices.
cURL
- Bash
- Python
- Python
- JavaScript
curl "https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/composites?limit=10" \
-H "Authorization: Bearer $ACCESS_TOKEN"