GET
/
v1
/
namespaces
/
models
curl --request GET \
  --url https://api.mixpeek.com/v1/namespaces/models
{
  "embedding_models": {
    "multimodal": {
      "size": 1408,
      "supported_modalities": [
        "text",
        "image",
        "video"
      ],
      "vector_type": "dense"
    },
    "text": {
      "size": 1024,
      "supported_modalities": [
        "text"
      ],
      "vector_type": "dense"
    }
  },
  "payload_indexes": [
    {
      "type": "keyword"
    },
    {
      "type": "integer"
    },
    {
      "type": "text"
    }
  ]
}

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'

Response

200
application/json
Successful Response

Response schema for available models endpoint

embedding_models
object
required

Dictionary mapping model names to their detailed specifications

payload_indexes
object[]
required

List of available payload index types that can be used for filtering

Simple schema for payload index type