GET
/
v1
/
retrievers
/
stages
List available retriever stages
curl --request GET \
  --url https://api.mixpeek.com/v1/retrievers/stages
[
  {
    "description": "Performs KNN search over a configured vector field",
    "parameter_schema": {
      "k": {
        "default": 10,
        "minimum": 1,
        "type": "integer"
      },
      "vector_field": {
        "type": "string"
      }
    },
    "stage_name": "knn_search",
    "version": "1.0.0"
  }
]

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'

X-Namespace
string | null

Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint.

Response

Successful Response

stage_name
string
required

The unique name of the stage.

version
string
required

The version of the stage.

description
string
required

A description of what the stage does.

parameter_schema
object | null

The schema for the parameters this stage accepts.