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

# List converter commands

> Returns all configured Knowledge converter command definitions. Requires L0 authorization.



## OpenAPI

````yaml GET /api/v1/knowledge/commands
openapi: 3.1.0
info:
  title: FamilyCo API
  description: Core and Knowledge endpoints from the FamilyCo Fastify server.
  version: 1.0.0
  license:
    name: MIT
servers:
  - url: http://127.0.0.1:4000
    description: Local development server
security:
  - bearerAuth: []
tags:
  - name: Core
    description: Infrastructure and runtime status endpoints.
  - name: Auth
    description: Token and API key related endpoints.
  - name: Knowledge
    description: Document upload, indexing, and retrieval endpoints.
paths:
  /api/v1/knowledge/commands:
    get:
      tags:
        - Knowledge
      summary: List available converter commands
      description: >-
        Returns all configured Knowledge converter command definitions. Requires
        L0 authorization.
      responses:
        '200':
          description: Available converter commands
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KnowledgeCommandListResponse'
components:
  schemas:
    KnowledgeCommandListResponse:
      type: object
      required:
        - items
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/KnowledgeCommandItem'
    KnowledgeCommandItem:
      type: object
      required:
        - id
        - description
      properties:
        id:
          type: string
        description:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````