GET
/
vector-indices
curl --request GET \
  --url http://localhost/api/v1/vector-indices \
  --header 'Authorization: Bearer <token>'
[
  {
    "embeddings_model_name": "<string>",
    "chunk_size": 123,
    "chunk_overlap": 123,
    "status": "not_ready",
    "status_msg": "<string>",
    "top_k": 10
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

select
string
default:*

Response

200
application/json

Successful Response

The response is of type VectorIndexOut · object[].