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

# List operations

> List all CLI/API operations and parity classifications.



## OpenAPI

````yaml /api-reference/openapi.json get /commands
openapi: 3.1.0
info:
  title: Dench API
  version: 1.0.0
  description: >-
    Versioned Dench workspace API. The operation registry is shared with the
    Dench CLI parity layer, so every CLI command maps to an endpoint here.
servers:
  - url: https://www.dench.com/api/v1
security: []
tags:
  - name: agent-config
    description: Agent Config operations.
  - name: approvals
    description: Approvals operations.
  - name: apps
    description: Apps operations.
  - name: auth
    description: Auth operations.
  - name: billing
    description: Billing operations.
  - name: browser
    description: Browser operations.
  - name: chat
    description: Chat operations.
  - name: crm
    description: Crm operations.
  - name: email
    description: Email operations.
  - name: files
    description: Files operations.
  - name: gateway
    description: Gateway operations.
  - name: local
    description: Local operations.
  - name: memory
    description: Memory operations.
  - name: meta
    description: Meta operations.
  - name: routines
    description: Routines operations.
  - name: workspace
    description: Workspace operations.
paths:
  /commands:
    get:
      tags:
        - meta
      summary: List operations
      description: List all CLI/API operations and parity classifications.
      operationId: commands_list
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  operations:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        group:
                          type: string
                        summary:
                          type: string
                        cli:
                          type: string
                        aliases:
                          type: array
                          items:
                            type: string
                        method:
                          type: string
                        path:
                          type: string
                        backend:
                          type: string
                          enum:
                            - convex
                            - gateway
                            - custom
                            - local
                        deprecated:
                          type: boolean
                      required:
                        - id
                        - group
                        - summary
                        - cli
                        - aliases
                        - method
                        - path
                        - backend
                        - deprecated
                      additionalProperties: false
                required:
                  - operations
                additionalProperties: false
              example:
                operations:
                  - id: crm.entries.create
                    group: crm
                    summary: Create a CRM entry.
                    cli: dench crm entries create
                    aliases: []
                    method: POST
                    path: /crm/objects/{objectName}/entries
                    backend: convex
                    deprecated: false
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Operation or resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      description: Server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  schemas:
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
            - type
            - code
          properties:
            message:
              type: string
            type:
              type: string
            code:
              type: string
            details: {}

````