> ## 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.

# List all indexers

> Retrieves a list of all indexers



## OpenAPI

````yaml /api-reference/endpoint/storage/openapi.json get /storage/indexers
openapi: 3.0.3
info:
  title: quiva.ai Gateway
  description: >-
    A comprehensive interface for managing key-value stores, object stores,
    streams, and search indexing
  contact:
    name: quiva.ai Support
    url: https://quiva.ai/help-center/
  version: 1.0.0
servers:
  - url: https://api.quiva.ai
    description: Production API server
security:
  - bearerAuth: []
  - apiKeyAuth: []
paths:
  /storage/indexers:
    get:
      tags:
        - Indexers
      summary: List all indexers
      description: Retrieves a list of all indexers
      operationId: getIndexerList
      responses:
        '200':
          description: Successfully retrieved indexer list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IndexerListResponse'
              examples:
                multiple_indexers:
                  summary: Multiple indexers configured
                  value:
                    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
                single_indexer:
                  summary: Single indexer configured
                  value:
                    body:
                      results:
                        - name: default-index
                          description: Default search index
                          subjects:
                            - data.*
                          index_config:
                            mappings:
                              - field: content
                                field_type: text
                              - field: tags
                                field_type: keyword
                            engine: bleve
                            idBy: id
                            partitions: 1
                            version: 1
                      results_total: 1
                    metadata:
                      duration: 5ms
                empty_list:
                  summary: No indexers configured
                  value:
                    body:
                      results: []
                      results_total: 0
                    metadata:
                      duration: 2ms
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    IndexerListResponse:
      type: object
      properties:
        body:
          type: object
          properties:
            results:
              type: array
              items:
                $ref: '#/components/schemas/IndexerListItem'
            results_total:
              type: integer
        metadata:
          $ref: '#/components/schemas/Metadata'
    IndexerListItem:
      type: object
      properties:
        name:
          type: string
        description:
          type: string
        subjects:
          type: array
          items:
            type: string
        index_config:
          type: object
          properties:
            mappings:
              type: array
              items:
                $ref: '#/components/schemas/IndexMapping'
            engine:
              type: string
            idBy:
              type: string
            partitions:
              type: integer
            version:
              type: integer
    Metadata:
      type: object
      properties:
        bucket:
          type: string
          description: Bucket name
        duration:
          type: string
          description: Operation duration
        field:
          type: string
          description: Search field
        hits:
          type: integer
          description: Number of hits
        index_duration:
          type: string
          description: Index search duration
        index_hits:
          type: integer
          description: Number of index hits
        index_name:
          type: string
          description: Index name
        index_partitions:
          type: integer
          description: Number of index partitions
        key:
          type: string
          description: Entry key
        limit:
          type: integer
          description: Query limit
        partitions:
          type: integer
          description: Number of partitions
        search:
          type: string
          description: Search term
        stream:
          type: string
          description: Stream name
        subject:
          type: string
          description: Subject pattern
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message
    IndexMapping:
      type: object
      required:
        - field
        - field_type
      properties:
        field:
          type: string
          description: Field name to be indexed
        field_type:
          type: string
          description: Type of the field
          enum:
            - text
            - number
            - date
            - boolean
            - keyword
  responses:
    UnauthorizedError:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: unauthorized
    InternalServerError:
      description: Internal Server Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: internal_error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key

````