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

# Get Enabled Functions

> Get all enabled functions and their parameters from inspection.

Returns:
    EnabledFunctionsResponse: List of enabled functions with their parameters.



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json get /api/v1/debug/enabled-functions
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/debug/enabled-functions:
    get:
      tags:
        - Debug
      summary: Get Enabled Functions
      description: |-
        Get all enabled functions and their parameters from inspection.

        Returns:
            EnabledFunctionsResponse: List of enabled functions with their parameters.
      operationId: get_enabled_functions_api_v1_debug_enabled_functions_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EnabledFunctionsResponse'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    EnabledFunctionsResponse:
      properties:
        functions:
          items:
            $ref: '#/components/schemas/FunctionInfo'
          type: array
          title: Functions
          description: List of enabled functions with their parameters
        total_count:
          type: integer
          title: Total Count
          description: Total number of enabled functions
      type: object
      required:
        - functions
        - total_count
      title: EnabledFunctionsResponse
      description: Schema for enabled functions inspection response.
    FunctionInfo:
      properties:
        name:
          type: string
          title: Name
          description: Function name
        docstring:
          anyOf:
            - type: string
            - type: 'null'
          title: Docstring
          description: Function docstring
        parameters:
          items:
            $ref: '#/components/schemas/FunctionParameter'
          type: array
          title: Parameters
          description: Function parameters
        return_annotation:
          anyOf:
            - type: string
            - type: 'null'
          title: Return Annotation
          description: Return type annotation as string
      type: object
      required:
        - name
        - parameters
      title: FunctionInfo
      description: Schema for function information.
    FunctionParameter:
      properties:
        name:
          type: string
          title: Name
          description: Parameter name
        type_annotation:
          anyOf:
            - type: string
            - type: 'null'
          title: Type Annotation
          description: Parameter type annotation as string
        default_value:
          anyOf:
            - type: string
            - type: 'null'
          title: Default Value
          description: Default value as string
        has_default:
          type: boolean
          title: Has Default
          description: Whether parameter has a default value
        kind:
          type: string
          title: Kind
          description: Parameter kind (POSITIONAL_ONLY, POSITIONAL_OR_KEYWORD, etc.)
      type: object
      required:
        - name
        - has_default
        - kind
      title: FunctionParameter
      description: Schema for function parameter information.
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````