Returns combined discovery information including extractors, stages, and manifest schema in a single request. Use this for comprehensive capability discovery.
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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Combined discovery response with all available resources.
Available feature extractors
Available retriever stages
Manifest schema information
{
"dependency_graph": {
"bucket": ["namespace"],
"collection": ["namespace", "bucket"],
"retriever": ["namespace", "collection"]
},
"examples": {
"namespace": "namespaces:\n - name: my_ns\n feature_extractors:\n - name: multimodal_extractor"
},
"manifest_version": "1.0",
"resource_types": [
"namespace",
"bucket",
"collection",
"retriever"
],
"schemas": {
"namespace": { "properties": {}, "type": "object" }
}
}