Namespaces
List Available Models
Returns all available models and their configurations, scoped to the organization
GET
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'
Response
200
application/json
Successful Response
Response schema for available models endpoint
Dictionary mapping model names to their detailed specifications
Example:
{
"multimodal": {
"size": 1408,
"supported_modalities": ["text", "image", "video"],
"vector_type": "dense"
},
"text": {
"size": 1024,
"supported_modalities": ["text"],
"vector_type": "dense"
}
}
List of available payload index types that can be used for filtering
Simple schema for payload index type
Example:
[
{ "type": "keyword" },
{ "type": "integer" },
{ "type": "text" }
]
Was this page helpful?