GET
/
v1
/
collections
/
{collection_id}
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

Authorization
string | null

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'

X-Namespace
string | null

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

collection_id
string
required

The ID of the collection to retrieve

Response

200
application/json
Successful 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.

collection_name
string
required

Name for the collection

feature_extractors
object[]
required

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.

output_schema
object
required

Schema for the collection determined by the feature extractors and their outputs

collection_id
string

Unique identifier for the collection

description
string | null

Description for the collection

metadata
object | null

Optional metadata for the collection

enabled
boolean
default:true

Enable or disable processing of this collection

source_lineage
object[]

Ordered list of lineage entries, from source to this collection

A single entry in the collection lineage path

status
enum<string> | null
default:PENDING

Status of the feature extractors in this collection

Available options:
DONE,
FAILED,
SKIPPED,
CANCELLED,
PROCESSING,
DOWNLOADING,
INITIALIZING,
UPLOADING,
QUEUED,
PENDING,
CONVERTING
taxonomy_applications
object[]

List of taxonomy application configurations

Configuration for how a taxonomy should be applied and materialized