Health
Collections
Collection Documents
Collection Features
Retriever Stages
Taxonomies
Clusters
Retriever Interactions
Namespaces
Research
Namespaces
List Namespaces
List all namespaces for a user
GET
/
v1
/
namespaces
Copy
curl --request GET \
--url https://api.mixpeek.com/v1/namespaces
Copy
{
"results": [
{
"namespace_id": "<string>",
"namespace_name": "spotify_playlists_dev",
"description": "<string>",
"feature_extractors": [
{
"feature_extractor_name": "<string>",
"version": "<string>"
}
],
"payload_indexes": [
{
"field_name": "<string>",
"type": "keyword",
"field_schema": {
"type": "text",
"tokenizer": "word",
"min_token_len": 2,
"max_token_len": 15,
"lowercase": true
}
}
],
"status": "PENDING",
"error_details": "<string>",
"task_id": "<string>"
}
],
"pagination": {
"total": 123,
"page": 123,
"page_size": 123,
"total_pages": 123,
"next_page": "<string>",
"previous_page": "<string>"
}
}
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
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://api.mixpeek.com/v1/namespaces
Copy
{
"results": [
{
"namespace_id": "<string>",
"namespace_name": "spotify_playlists_dev",
"description": "<string>",
"feature_extractors": [
{
"feature_extractor_name": "<string>",
"version": "<string>"
}
],
"payload_indexes": [
{
"field_name": "<string>",
"type": "keyword",
"field_schema": {
"type": "text",
"tokenizer": "word",
"min_token_len": 2,
"max_token_len": 15,
"lowercase": true
}
}
],
"status": "PENDING",
"error_details": "<string>",
"task_id": "<string>"
}
],
"pagination": {
"total": 123,
"page": 123,
"page_size": 123,
"total_pages": 123,
"next_page": "<string>",
"previous_page": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.