collections
List Collections
Retrieve all collections belonging to your organization.
Collections are containers that group related data from one or more source connections, enabling unified search across multiple data sources.
Results are sorted by creation date (newest first) and support pagination and text search filtering.
get/collections
Query parameters
skipinteger
Number of collections to skip for pagination
Number of collections to skip for pagination
limitinteger
Maximum number of collections to return (1-1000)
Example:100
Maximum number of collections to return (1-1000)
searchstring
Search term to filter collections by name or readable_id
Example:customer
Search term to filter collections by name or readable_id
Response
Successful Response
Example response
[
{
"created_at": "2024-01-15T09:30:00Z",
"created_by_email": "admin@company.com",
"embedding_model_name": "text-embedding-3-large",
"id": "550e8400-e29b-41d4-a716-446655440000",
"modified_at": "2024-01-15T14:22:15Z",
"modified_by_email": "finance@company.com",
"name": "Finance Data",
"organization_id": "org12345-6789-abcd-ef01-234567890abc",
"readable_id": "finance-data-ab123",
"source_connection_summaries": [
{
"name": "Slack",
"short_name": "slack"
},
{
"name": "GitHub",
"short_name": "github"
}
],
"status": "ACTIVE",
"vector_size": 3072
}
]