Valori LogoValori
GET/v1/index/configREAD

Node index configuration

Reports how indexing is configured for the node as a whole.

This reports node-level configuration only — indexes are actually configured and built per collection. Since Phase 4, index_type here is always "collection_scoped"; the state you actually care about (what index type is active for a given collection, and whether a build is in progress) lives at Collection index state, not here.

Response fields

index_typestringrequired

Always "collection_scoped" on current nodes — indexing is configured per collection, not globally.

hnswobjectoptional

Present only on older/legacy node-wide HNSW configuration; absent on a node using per-collection indexing.

Errors

StatuscodeMeaning
401unauthorizedMissing or invalid API key.
403forbiddenThe key's scope doesn't include read_only.

Related endpoints

GET /v1/index/config
curl "https://app.valori.systems/v1/index/config" \
  -H "Authorization: Bearer vlk_your_project_api_key"
200
{
  "index_type": "collection_scoped"
}