Health
Collections
Collection Documents
Collection Features
Retriever Stages
Taxonomies
Clusters
Retriever Interactions
Namespaces
Research
Get Collection
curl --request GET \
--url https://api.mixpeek.com/v1/collections/{collection_id}
{
"collection_name": "<string>",
"collection_id": "<string>",
"description": "<string>",
"metadata": {},
"enabled": true,
"source_lineage": [
{
"source_type": "bucket",
"collection_id": "<string>",
"bucket_id": "<string>",
"bucket_config": {
"type": "bucket",
"bucket_id": "<string>",
"prefix_key": "<string>",
"collection_id": "<string>",
"filters": {
"AND": [
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
],
"OR": [
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
],
"NOT": [
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
],
"case_sensitive": true
}
},
"collection_config": {
"type": "bucket",
"bucket_id": "<string>",
"prefix_key": "<string>",
"collection_id": "<string>",
"filters": {
"AND": [
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
],
"OR": [
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
],
"NOT": [
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
],
"case_sensitive": true
}
},
"feature_extractors": [
{
"feature_extractor_name": "<string>",
"version": "<string>",
"parameters": {},
"input_mapping": {},
"output_mapping": {}
}
],
"output_schema": {
"properties": {}
}
}
],
"feature_extractors": [
{
"feature_extractor_name": "<string>",
"version": "<string>",
"parameters": {},
"input_mapping": {},
"output_mapping": {}
}
],
"status": "DONE",
"output_schema": {
"properties": {}
},
"taxonomy_applications": [
{
"taxonomy_id": "<string>",
"output_collection": "<string>"
}
]
}
Headers
Bearer token authentication using your API key. Format: 'Bearer your_api_key'. To get an API key, create an account at mixpeek.com/start and generate a key in your account settings. Example: 'Bearer sk_1234567890abcdef'
Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint.
Path Parameters
The ID of the collection to retrieve
Response
Collection model defining the high-level structure and behavior of a collection. Collections are created and modified through feature extractors, which define their own document handling behavior (create/enrich/replace) through their document_output_handling settings.
Name for the collection
List of feature extractor configurations used to create the collection
Configuration for a feature extractor that is selected for use within a collection. This model represents a selected feature extractor along with its specific configuration for a particular collection. This gets stored in the collection settings.
Name of the feature extractor
Version of the feature extractor definition
Custom parameters for the extractor
Maps pipeline inputs to extractor inputs (source -> target)
Schema for the collection determined by the feature extractors and their outputs
Schema field definition for bucket objects
Enum for field types in bucket schemas
string
, number
, integer
, boolean
, object
, array
, date
, datetime
, json
, text
, image
, audio
, video
, pdf
, document
, spreadsheet
, presentation
Schema field definition for bucket objects
Enum for field types in bucket schemas
string
, number
, integer
, boolean
, object
, array
, date
, datetime
, json
, text
, image
, audio
, video
, pdf
, document
, spreadsheet
, presentation
Schema field definition for bucket objects
Unique identifier for the collection
Description for the collection
Optional metadata for the collection
Enable or disable processing of this collection
Ordered list of lineage entries, from source to this collection
A single entry in the collection lineage path
Type of this entry
bucket
, collection
Output schema
Schema field definition for bucket objects
Enum for field types in bucket schemas
string
, number
, integer
, boolean
, object
, array
, date
, datetime
, json
, text
, image
, audio
, video
, pdf
, document
, spreadsheet
, presentation
Schema field definition for bucket objects
ID of this entry (collection_id)
ID of this entry (bucket_id)
Bucket details if this is a bucket or using a bucket source
Type of source (bucket or collection)
bucket
, collection
ID of the source bucket
Optional prefix to filter bucket objects
ID of the source collection
Optional filters to apply to the source collection
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
Collection details if this is a collection or using a collection source
Type of source (bucket or collection)
bucket
, collection
ID of the source bucket
Optional prefix to filter bucket objects
ID of the source collection
Optional filters to apply to the source collection
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
Feature extractors applied
Configuration for a feature extractor that is selected for use within a collection. This model represents a selected feature extractor along with its specific configuration for a particular collection. This gets stored in the collection settings.
Name of the feature extractor
Version of the feature extractor definition
Custom parameters for the extractor
Maps pipeline inputs to extractor inputs (source -> target)
Status of the feature extractors in this collection
DONE
, FAILED
, SKIPPED
, CANCELLED
, PROCESSING
, DOWNLOADING
, INITIALIZING
, UPLOADING
, QUEUED
, PENDING
, CONVERTING
List of taxonomy application configurations
Configuration for how a taxonomy should be applied and materialized
ID of the taxonomy to apply
ID or name of the collection to store enriched documents, if none exists, it will be created.
If set to None, it will be treated as a temporary enrichment and not stored.
Was this page helpful?
curl --request GET \
--url https://api.mixpeek.com/v1/collections/{collection_id}
{
"collection_name": "<string>",
"collection_id": "<string>",
"description": "<string>",
"metadata": {},
"enabled": true,
"source_lineage": [
{
"source_type": "bucket",
"collection_id": "<string>",
"bucket_id": "<string>",
"bucket_config": {
"type": "bucket",
"bucket_id": "<string>",
"prefix_key": "<string>",
"collection_id": "<string>",
"filters": {
"AND": [
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
],
"OR": [
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
],
"NOT": [
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
],
"case_sensitive": true
}
},
"collection_config": {
"type": "bucket",
"bucket_id": "<string>",
"prefix_key": "<string>",
"collection_id": "<string>",
"filters": {
"AND": [
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
],
"OR": [
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
],
"NOT": [
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
],
"case_sensitive": true
}
},
"feature_extractors": [
{
"feature_extractor_name": "<string>",
"version": "<string>",
"parameters": {},
"input_mapping": {},
"output_mapping": {}
}
],
"output_schema": {
"properties": {}
}
}
],
"feature_extractors": [
{
"feature_extractor_name": "<string>",
"version": "<string>",
"parameters": {},
"input_mapping": {},
"output_mapping": {}
}
],
"status": "DONE",
"output_schema": {
"properties": {}
},
"taxonomy_applications": [
{
"taxonomy_id": "<string>",
"output_collection": "<string>"
}
]
}