Creates a new namespace with specified feature extractors and payload indexes.
REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.
"Bearer YOUR_API_KEY"
"Bearer YOUR_STRIPE_API_KEY"
Request schema for creating a new namespace.
Name of the namespace to create
"spotify_playlists_dev"
List of feature extractors to use. At least one feature extractor must be provided.
1[
{
"feature_extractor_id": "multimodal_extractor_1.0.0",
"feature_extractor_name": "multimodal_extractor",
"version": "1.0.0"
}
]Description of the namespace
"This namespace contains playlists from Spotify"
Optional list of custom payload index configurations. Indexes required by selected feature extractors will be added automatically.
[
{
"field_name": "metadata.title",
"field_schema": {
"lowercase": true,
"max_token_len": 15,
"min_token_len": 2,
"tokenizer": "word",
"type": "text"
},
"is_protected": false,
"type": "text"
},
{
"field_name": "metadata.description",
"field_schema": { "is_tenant": true, "type": "keyword" },
"is_protected": false,
"type": "keyword"
}
]Enable automatic creation of Qdrant payload indexes based on filter usage patterns. When enabled, the system tracks which fields are most frequently filtered (>100 queries/24h) and automatically creates indexes to improve query performance. Background task runs every 6 hours. Expected performance improvement: 50-90% latency reduction for filtered queries.
true
Successful Response
Namespace model.
Name of the namespace
"spotify_playlists_dev"
Unique identifier for the namespace
Infrastructure configuration for the namespace (Ray, Qdrant).
{
"autoscaling_enabled": false,
"compute_tier": "shared",
"description": "Shared development namespace",
"max_concurrent_jobs": 10,
"qdrant_collection": "ns_dev",
"ray_head_node_url": "ray://shared-cluster:10001"
}Infrastructure cluster ID for this namespace (Enterprise only). When set, this namespace uses dedicated Anyscale/Ray + Qdrant cluster. If None, uses shared infrastructure or organization-level infrastructure. Format: iclstr_xxx
"iclstr_abc123xyz"
Description of the namespace
List of feature extractors configured for this namespace
Custom payload indexes configured for this namespace
Total number of documents in this namespace (from Qdrant collection)
Enable automatic creation of Qdrant payload indexes based on filter usage patterns. When enabled, the system tracks which fields are most frequently filtered (>100 queries/24h) and automatically creates indexes to improve query performance. Background task runs every 6 hours. Expected performance improvement: 50-90% latency reduction for filtered queries.
When the namespace was created
When the namespace was last updated