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

# Get commands

> Returns a list of available Discord bot commands, optionally filtered by category

### Rate Limit

2 requests per 10 seconds


## OpenAPI

````yaml GET /commands
openapi: 3.1.0
info:
  title: Multex Discord Bot API
  version: 1.0.0
  description: API documentation for Multex Discord bot
servers:
  - url: https://api.multex.tech
    description: Development server
security: []
paths:
  /commands:
    get:
      tags:
        - Commands
      summary: Get Discord Bot Commands
      description: >-
        Returns a list of available Discord bot commands, optionally filtered by
        category
      parameters:
        - name: category
          in: query
          required: false
          schema:
            type: string
          description: Filter commands by category
      responses:
        '200':
          description: List of commands
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        category:
                          type: string
                          description: Command category
                        description:
                          type: string
                          description: Command description
                        extendedHelp:
                          type: string
                          description: Extended help information
                        name:
                          type: string
                          description: Command name
                        preconditions:
                          type: array
                          items:
                            type: string
                          description: Command preconditions
        '400':
          description: Bad request - invalid parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Invalid category parameter. Must be a string.
        '401':
          description: Unauthorized - authentication required
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Unauthorized - authentication required
      security: []

````