Skip to main content
GET
/
storage
/
indexers
List all indexers
curl --request GET \
  --url https://api.quiva.ai/storage/indexers \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "results": [
      {
        "name": "users-index",
        "description": "Full-text search index for user profiles",
        "subjects": [
          "users.profiles.*"
        ],
        "index_config": {
          "mappings": [
            {
              "field": "name",
              "field_type": "text"
            },
            {
              "field": "email",
              "field_type": "keyword"
            },
            {
              "field": "age",
              "field_type": "number"
            },
            {
              "field": "created_at",
              "field_type": "date"
            },
            {
              "field": "active",
              "field_type": "boolean"
            }
          ],
          "engine": "bleve",
          "idBy": "user_id",
          "partitions": 4,
          "version": 1
        }
      },
      {
        "name": "products-index",
        "description": "Product catalog search index",
        "subjects": [
          "products.*"
        ],
        "index_config": {
          "mappings": [
            {
              "field": "name",
              "field_type": "text"
            },
            {
              "field": "description",
              "field_type": "text"
            },
            {
              "field": "price",
              "field_type": "number"
            },
            {
              "field": "category",
              "field_type": "keyword"
            },
            {
              "field": "in_stock",
              "field_type": "boolean"
            }
          ],
          "engine": "bleve",
          "idBy": "product_id",
          "partitions": 2,
          "version": 1
        }
      },
      {
        "name": "logs-index",
        "description": "System logs search index",
        "subjects": [
          "logs.system.*",
          "logs.app.*"
        ],
        "index_config": {
          "mappings": [
            {
              "field": "message",
              "field_type": "text"
            },
            {
              "field": "level",
              "field_type": "keyword"
            },
            {
              "field": "service",
              "field_type": "keyword"
            },
            {
              "field": "timestamp",
              "field_type": "date"
            }
          ],
          "engine": "bleve",
          "idBy": "log_id",
          "partitions": 8,
          "version": 2
        }
      }
    ],
    "results_total": 3
  },
  "metadata": {
    "duration": "15ms"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.quiva.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Response

Successfully retrieved indexer list

body
object
metadata
object