> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getdecisional.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Knowledge Engines

> Returns a list of all public knowledge engines



## OpenAPI

````yaml GET /api/v1/knowledge-engines
openapi: 3.0.1
info:
  title: Knowledge Engine API
  description: Public API endpoints for managing knowledge engines
  version: 1.0.0
servers:
  - url: https://api.getdecisional.ai
security: []
paths:
  /api/v1/knowledge-engines:
    get:
      summary: List all public knowledge engines
      description: Returns a list of all public knowledge engines
      responses:
        '200':
          description: List of knowledge engines
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KnowledgeEngineResponse'
components:
  schemas:
    KnowledgeEngineResponse:
      type: object
      properties:
        id:
          type: string
          description: Alphanumeric 14 character string identifier
          example: kng_abc123xyz789
        name:
          type: string
          description: Name of the knowledge engine
          example: Fintech Companies
        description:
          type: string
          description: Description of the knowledge engine
          example: Knowledge engine for processing and analyzing fintech companies
        notes:
          type: object
          description: Custom attributes and fields
          example:
            category: fintech
        status:
          type: string
          enum:
            - processing
            - ready
          description: Current status of the knowledge engine
          example: ready
        created_at:
          type: integer
          format: int64
          description: Unix timestamp when this entity was created
          example: 1679644800

````