Skip to main content
GET
/
v1
/
discovery
/
extractors
List Available Feature Extractors
curl --request GET \
  --url https://api.mixpeek.com/v1/discovery/extractors \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "version": "<string>",
    "description": "<string>",
    "supported_modalities": [
      "<string>"
    ],
    "output_features": [
      {}
    ],
    "input_schema": {},
    "example_usage": {}
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful Response

name
string
required

Feature extractor name (e.g., 'multimodal_extractor')

version
string
required

Feature extractor version (e.g., 'v1')

description
string
required

Human-readable description of what this extractor does

supported_modalities
string[]

List of supported input modalities (text, image, video, audio)

output_features
Output Features · object[]

List of features produced by this extractor

input_schema
Input Schema · object

JSON Schema for extractor input parameters

example_usage
Example Usage · object

Example manifest YAML snippet showing how to use this extractor