GET
/
v1
/
namespaces
/
{namespace}
curl --request GET \
  --url https://api.mixpeek.com/v1/namespaces/{namespace}
{
  "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>"
}

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'

Path Parameters

namespace_identifier
string
required

Either the namespace name or namespace ID

Examples:

"my_namespace"

"ns_1234567890"

Response

200
application/json

Successful Response

Namespace model