v5
latestOpenAPI 3.1.02026-08-025631,1012.8 MBDiscovery
List Available Feature Extractors
Discover all available feature extractors with their capabilities, supported modalities, output features, and example usage. Use this to understand what extractors are available when configuring namespaces and collections in manifests.
get/v1/discovery/extractors
Response
Successful Response
Example response
[
{
"costs": {
"rates": [
{
"credits_per_unit": 10,
"description": "Per minute of video processed",
"unit": "minute"
}
],
"tier": 2,
"tier_label": "STANDARD"
},
"description": "Extracts embeddings from text, images, and video frames",
"example_usage": {
"collection": {
"feature_extractor": {
"input_mappings": {
"content": "video"
},
"name": "multimodal_extractor",
"parameters": {
"split_method": "time",
"time_split_interval": 10
},
"version": "v1"
}
},
"namespace": {
"feature_extractors": [
{
"name": "multimodal_extractor",
"version": "v1"
}
]
}
},
"name": "multimodal_extractor",
"output_features": [
{
"name": "multimodal_embedding",
"type": "embedding",
"uri": "mixpeek://multimodal_extractor@v1/multimodal_embedding"
}
],
"parameter_schema": {
"properties": {
"split_method": {
"default": "time",
"description": "Video splitting strategy",
"type": "string"
},
"time_split_interval": {
"default": 10,
"description": "Interval in seconds for time splitting",
"type": "integer"
}
},
"type": "object"
},
"supported_input_types": [
"video",
"image"
],
"supported_modalities": [
"video",
"image"
],
"version": "v1"
}
]